Installation

Installation#

CADET-RDM can be installed using

pip install cadet-rdm

We highly recommend using an environment file to install CADET-RDM.

For use with mamba or conda, create a rdm_environment.yml like:

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

and then run

mamba env create -f rdm_environment.yml

For use with pip, create a rdm_requirements.txt file like:

python==3.11
cadet-rdm>=0.0.15
pip install -r rdm_requirements.txt