Versions Compared

Key

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

...

Conda Commands to Create Rogue Environment

This is in addition to the other packages that must be built in for the rogue library (see next step).  These conda commands are derived from:

https://github.com/slaclab/rogue/blob/master/Readme_python3.txt

Code Block
conda env create -n timetool
source activate timetool
conda install pyyaml
conda install pyzmq
conda install -c conda-forge parse
conda install click
conda install MySQLdb
conda install -c bioconda mysqlclient
conda install -c conda-forge pyro4
conda install numpy
pip install recordclass

...


Building Rogue

git clone https://github.com/slaclab/rogue.git

Needs a conda env with a bunch of stuff (previous step).  Follow build instruction files in the rogue root directory README files (although I suggest setting up a conda python3 env (previous step) instead of using pip install):

https://github.com/slaclab/rogue/blob/master/Readme_build.txthttps://github.com/slaclab/rogue/blob/master/Readme_python3.txt

cd rogue

git submodule init

...