############ Installation ############ Installing via Package Manager ================================ Install the package from `pypi `__ by running .. code:: bash pip install eDPM from the command line if using the pip package manager or .. code:: bash conda install eDPM when using conda environments. Other package managers should also yield the desired effect but have not been tested. Building from source ==================== It is also possible to clone the `git repository `__ and install from there. This procedure is possibly unsafe since it installs the current development branch and may yield unwanted results. Thus the preceding procedures are preferred. To install from the repository follow these steps: First clone the repo and build the package .. code:: bash git clone github.com/Spatial-Systems-Biology-Freiburg/eDPM cd eDPM python -m build Now use your desired package manager to install the local file such as pip .. code:: bash pip install dist/eDPM-*.tar.gz or conda. .. code:: bash conda install dist/eDPM-*.tar.gz