Table of Contents
pip install envs-manager
conda install -c conda-forge envs-manager
- Fork and clone the repo. To clone:
git clone <link to your fork.git>
cd envs-manager
- Create a Python environment and activate it. For example with conda:
conda env create -n envs-manager --file requirements/environment.yml
conda activate envs-manager
- Install development version:
pip install -e .
- Setup pre-commit:
pre-commit install
- To run the test suite:
You will need to setup the ENV_BACKEND_EXECUTABLE
environmental variable in order to use a conda-like
manager. This environment variable should point to a conda or mamba executable. For example, if you have micromamba downloaded on Windows you should set ENV_BACKEND_EXECUTABLE=<path to micromamba executable>/micromamba.exe
. After that you should be able to run our tests with:
pytest -vv
- To check the command line options you need to run:
envs-manager --help
envs-manager
is distributed under the terms of the MIT license.