Versions Compared

Key

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

...

Code Block
languagebash
conda activate lcls2daq
 
make

 ____________________________________________________________________________

to create the conda environment (forgot where the file is located)from the yaml file.

open up env_create.yaml and change PYTHONVER to 3.7.4.  Not sure where PYTHONVER can be picked up from with manually changing the - python entry it in the yaml file.

also, for timetooldev, rogue-ne needs to be set to "v3.5.0".  The "v" is needed at the beginning.

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
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 install -c anaconda libboost
conda install -c anaconda py-boost

____________________________________________________________________________

 

the cmakelist is located in 

...