Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
python scripts/gui.py --enVcMask 0xD --dataDebug 0
 
./psdaq/build/drp/pgpread -d /dev/datadev_0 -c 1
 
#or for more recent
#./psdaq/build/drp/pgpread_timetool -d /dev/datadev_0 -c 1 -t -f

 

install lcls2

Code Block
languagebash
git clone git@github.com:slac-lcls/lcls2.git
 
source setup_env.sh

./build_all.sh 

...

Code Block
languagebash
#create the conda environment
conda env create --name lcls2daq --file relmanage/env_create.yaml
 
#to use local pcieapps package instead of conda pcieapps
condapip uninstall package timetooldev
# and then proceed to use python setup.py as described for lcls-pcie-apps.
 
###don't do this below
#conda remove pcieapps
#but this will also remove libboost and py-bost.  Those dependencies don't get reinstalled with a conda install pcieapps.  Instead, need to manually reinstall them.
conda#conda install -c anaconda libboost
conda#conda install -c anaconda py-boost

...