Skip to content

Installation#

Setting up a user environment#

As a pysimdeum user, it is easiest to install using pip as it is available on PyPI:

pip install pysimdeum

Alternatively, you can install pysimdeum from its repository:

pip install git+https://github.com/KWR-Water/pysimdeum.git

Setting up a developer environment#

The install instructions are slightly different to create a development environment compared to a user environment:

  1. Install mamba with the Mambaforge executable for your operating system.
  2. Open the command line (or the "miniforge prompt" in Windows).
  3. Create a Python environment: mamba create -n pysimdeum python=3.11 pip -c conda-forge
  4. Activate the pysimdeum environment: mamba activate pysimdeum
  5. Install dependencies: pip install -r requirements.txt .
git clone git@github.com:KWR-Water/pysimdeum.git
cd pysimdeum
mamba create -n pysimdeum python=3.11 pip -c conda-forge
mamba activate pysimdeum
pip install -r requirements.txt .