Versions Compared

Key

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

...

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

...