Installation

Cloning the repository

git clone https://github.com/meteofrance/mfai
cd mfai
pip install -e .

Using pip

You can install using pip trageting the main branch:

pip install mfai

If you want to target a specific version >= v6.2.1:

pip install mfai>=v6.2.1

Before version 6.2.1:

pip install git+https://github.com/meteofrance/mfai@v1.0.1

After version 7.0.0, mfai comes with optional dependencies for llm models. To install them, add [llm] or [dev] behind the pip installation instruction:

pip install .[dev]
# or
pip install mfai[llm]>=7.0.0