1. Installation#
We strongly recommend you use the latest Python version. Saturn support Python 3.10 and newer.
1.1. Create an environment#
It is recommended to start your project inside a virtual environment:
python3 -m venv venv # create a virtualenv
source venv/bin/activate # activate it
1.2. Install Saturn#
Saturn can then be added to your project by using the official Pypi package:
pip install saturn-engine[all]
poetry add saturn-engine -E all