Installation#

You can get help on Github discussions or GitHub issues.

Atoti follows NEP 29. Atoti 0.8.0 thus supports Python >= 3.9.

Pick one way to install Atoti:

Python package#

Atoti and its plugins are available as Python packages on the public PyPI repository and can thus be installed with Python package managers such as pip or Poetry.

Install Atoti and its JupyterLab extension:

pip install atoti[jupyterlab3]

Conda package#

Install Miniconda 64-bit or Anaconda 64-bit.

Note

Conda 64-bit is required since recent versions of some Atoti dependencies are not available with Conda 32-bit.

Add the conda-forge channel:

conda config --add channels conda-forge

Add the Atoti channel:

conda config --add channels https://conda.atoti.io

Create a new Conda environment:

conda create --name atoti

Activate it:

conda activate atoti

Install Atoti and its JupyterLab extension:

conda install atoti atoti-jupyterlab3 python