Conda

If you need help on the installation you can contact us on Gitter, Github or shoot us an email.

1. Install Conda

Warning

Conda 64-bit is required since recent versions of some packages, such as openjdk, are not available with Conda 32-bit.

Install Miniconda 64-bit (recommended) or Anaconda 64-bit.

2. Set up conda-forge channel

Add conda-forge to your Conda channels:

conda config --add channels conda-forge

3. Set up atoti channel

Add our channel to your configuration:

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

4. Create a new Conda environment

Create a new Conda environment and activate it:

conda create --name atoti
conda activate atoti

5. Install atoti

Install atoti and its companion packages:

conda install atoti jupyterlab jupyterlab-atoti nodejs openjdk python

6. Rebuild JupyterLab

JupyterLab needs to be rebuilt to include the atoti extension (it can take several minutes):

jupyter lab build --dev-build False --minimize True

Advanced

Without Artifactory

If your network policy is blocking our Artifactory repository, you will have to use this less convenient setup and upgrades won’t be streamlined.

First, you need to have the artifacts of our Conda packages on your computer. Let’s say you have our packages at /home/me/project/atoti-x.y.z-n.tar.bz2 and /home/me/project/jupyterlab-atoti-x.y.z-n.tar.bz2. Then, to install them, run these commands:

# Create a local Conda channel first.
conda install conda-build
mkdir -p /home/me/project/tmp/channel/noarch
mv /home/me/project/atoti-x.y.z-n.tar.bz2 /home/me/project/tmp/channel/noarch
conda index /home/me/project/tmp/channel/
# Do the actual installation.
conda install --channel file://home/me/project/tmp/channel atoti jupyterlab jupyterlab-atoti nodejs openjdk

Finally, follow step 6. Rebuild JupyterLab.