Installation#
Setting up a user environment#
As a pysimdeum user, it is easiest to install using pip as it is available on PyPI:
Alternatively, you can install pysimdeum from its repository:
Setting up a developer environment#
The install instructions are slightly different to create a development environment compared to a user environment:
- Install mamba with the Mambaforge executable for your operating system.
- Open the command line (or the "miniforge prompt" in Windows).
- Create a Python environment:
mamba create -n pysimdeum python=3.11 pip -c conda-forge - Activate the pysimdeum environment:
mamba activate pysimdeum - Install dependencies:
pip install -r requirements.txt .