It can be pretty annoying to create a conda environment. And slow. While it's useful to know how to create a conda environment using miniconda, it may also be useful for easy deployment and for biop users to just execute an installer that will create a conda environment easily, with one click.
That's what the repo conda-constructor allows you to do.
Limitation: if the components you need to install are installed using pip and not conda, then the environment needs a post-install script, and the installer will not be reproducible, and will require a post-install
script.
Documentation to continue...