Conda¶
1. Install Conda¶
Attention
Make sure to use a 64-bit version of Conda 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
6. Rebuild JupyterLab¶
JupyterLab needs to be rebuilt to include the atoti extension (it can take several minutes):
Linux / macOS¶
NODE_OPTIONS=--max-old-space-size=4096 jupyter lab build --dev-build False --minimize True
Windows¶
set NODE_OPTIONS=--max-old-space-size=4096 & jupyter lab build --dev-build False --minimize True
Advanced¶
Atoti+¶
Atoti+ is our enterprise edition, it requires a license.
First, follow steps 1. Install Conda and 2. Set up conda-forge channel.
Then, add the Atoti+ channel to your Conda configuration, replacing {{username}}
and {{password}}
with your credentials (contact support@atoti.io if you don’t have any):
conda config --add channels https://{{username}}:{{password}}@conda.atoti.io
Install Atoti+ and its companion packages:
conda install atoti-plus jupyterlab jupyterlab-atoti nodejs openjdk
Finally, follow step 6. Rebuild JupyterLab.
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.