Based on the instructions from the original framwork. The first step is checking out the code:
git clone --recurse-submodules git@gitlab.in2p3.fr:darkside/pyproto.git
and creating the necessary folders for running:
cd pyproto
mkdir -p logs
mkdir -p output
We assume in the following that all commands, unless otherwise indicated, are sent from the ``pyproto`` folder.
On a linux PC, run:
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh
while on a Mac:
curl -O https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
bash Miniconda3-latest-MacOSX-x86_64.sh
Then, create the conda environment [1]_ which you will use to run ``pyproto``::
conda config --add channels conda-forge
conda create --name piton3 root=6 python=3 mkl jupyter numpy scipy matplotlib scikit-learn h5py pandas scikit-image theano keras pytables root_pandas statsmodels lz4 pytables cython lmfit sphinx
and activate it::
source activate piton3
In order to deactivate the environment and unsetup all packages (thus restoring your standard environment), simply do::
source deactivate
--
VictorGoicoecheaCasanueva - 2020-06-18