Installation
The recommended installation method is an editable installation after cloning or copying the repository. To keep dependencies clean, the use of virtual environments is encouraged. Here, we will demonstrate the process for conda/mamba and pip.
See here for detailed installation instructions for micromamba, a lightweight method to manage both python interpreters and their packages.
For example, starting from a unix-like shell, we can download micromamba:
Maybe create a quicker alias for the micromamba binary just installed or add that to a bashrc file if using:
alias mamba=$(echo $(pwd)/micromamba/bin/micromamba)
# or:
echo "alias mamba=$(echo $(pwd)/micromamba/bin/micromamba)" >> ~/.bashrc
Now create a new environment with the project dependencies:
Then activate the new environement and install this repository in editable mode:
If you want to build the docs, install the additional dependencies, then build in the documentation folder: