A recommended workflow to install CADET-Process:
For more detail on each point, see the post below.
- Install a python package manager. We recommend conda via miniforge
- 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
- In your conda prompt run
conda env create -f environment.yml
- Check out the tutorials, the documentation, or an example.