Skip to content
Snippets Groups Projects
installation.md 824 B
Newer Older
Ronald Jäpel's avatar
Ronald Jäpel committed

# Installation

CADET-RDM can be installed using

```pip install cadet-rdm```

Ronald Jäpel's avatar
Ronald Jäpel committed
We *highly* recommend using an
[environment file](https://forum.cadet-web.de/t/a-guide-to-reproducible-python-environments-and-cadet-installations/766)
to install CADET-RDM.

For use with [mamba](https://github.com/conda-forge/miniforge#mambaforge) or
[conda](https://docs.conda.io/projects/miniconda/en/latest/), create a rdm_environment.yml like:

```yaml
name: rdm_example
channels:
  - conda-forge
dependencies:
  - python=3.11
  - conda
  - pip
  - pip:
      - cadet-rdm
```

and then run

```commandline
mamba env create -f rdm_environment.yml
```

For use with [pip](https://pypi.org/project/pip/), create a rdm_requirements.txt file like:

```
python==3.11
cadet-rdm>=0.0.15
```

```commandline
pip install -r rdm_requirements.txt
```