Installation#

Installing via Package Manager#

Install the package from pypi by running

pip install eDPM

from the command line if using the pip package manager or

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

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

pip install dist/eDPM-*.tar.gz

or conda.

conda install dist/eDPM-*.tar.gz