Installation

Caliber is compatible with Python 3.10, 3.11, 3.12, and 3.13, and is installed directly from source by typing:

py -m pip install git+https://github.com/multiconsult-group/caliber@main
python -m pip install git+https://github.com/multiconsult-group/caliber@main

After a successful installation, you will be able to use Caliber as a regular Python package by typing import caliber in your Python code. You will also have available the Caliber command line interface that is accessed by typing caliber in your terminal.

An existing installation is upgraded by typing:

py -m pip install --upgrade git+https://github.com/multiconsult-group/caliber@main
python -m pip install --upgrade git+https://github.com/multiconsult-group/caliber@main

Prerequisites

To be able to install from source, you need the following prerequisites:

Note

Note that we recommend using the py -m pip ... or python -m pip ... pattern instead of just pip ... to ensure that we target the correct Python version.