A Guide to Reproducible Python Environments and CADET Installations

A recommended workflow to install CADET-Process:

For more detail on each point, see the post below.

  1. Install a python package manager. We recommend conda via miniforge
  2. Prepare an environment.yml text file. For example it could contain:
name: cadet
channels:
  - conda-forge
dependencies:
  - python=3.12  # currently recommended for cadet-process installations 
  - pip
  - cadet
#  - jupyterlab  # optional, to run jupyter notebooks
#  - openpyxl    # optional, to open .xlsx files
#  - git         # optional, for version control
  - pip:
      - cadet-process
  1. In your conda prompt run conda env create -f environment.yml
  2. Check out the tutorials, the documentation, or an example.
1 Like