In order to get all the dependencies in place
for the python packages we use the conda environment
in this project.
Miniconda is a cross-platform package manager that allows managing dependencies and creates a corresponding python environment.
-
Install miniconda
-
Create the
rsl-envenvironment:
conda env create -f environment.yml
Alternatively, when creating a new environment without YAML file, use:
conda env create -n my_environment_name
- Update the
rsl-envenvironment:
conda-env update -n rsl-env -f environment.yml
-
Activate the
rsl-envenvironment: Mac and Linux:source activate rsl-env -
Remove the
rsl-envenvironment (delete the corresponding python packages):conda env remove --name rsl-env