Weight Minimisation PDF-model of Colibri
From your base conda environment run:
conda env create -f environment.yml
this will create a conda environment called wmin-model-dev
that has a wmin
executable and all the needed dependencies (e.g. colibri
).
To use a different environment name, one should do
conda env create -n myenv -f environment.yml
The above procedure installs the model in editable mode, but colibri is not. If developing colibri as well, a further simple step is required. Activate the environment, go to the colibri repository and install it in editable mode:
cd /path/to/colibri/
pip install -e .