Skip to content

Getting started

Installation

Novae can be installed on every OS via pip or poetry, on any Python version from 3.9 to 3.12 (included). By default, we recommend using python==3.10.

Advice (optional)

We advise creating a new environment via a package manager, except if you use Poetry, which will automatically create the environment.

For instance, you can create a new conda environment:

conda create --name novae python=3.10
conda activate novae

Choose one of the following, depending on your needs. It should take at most a few minutes.

pip install novae
git clone https://github.com/MICS-Lab/novae.git
cd novae

pip install -e . # no extra
pip install -e '.[dev]' # all extras
git clone https://github.com/MICS-Lab/novae.git
cd novae

poetry install --all-extras

Next steps