Creating Conda environments and Jupyter kernels

In the Purdue Analysis Facility, the Python-based Jupyter kernels are created from Conda environments. We provide a pre-installed Conda environment (/depot/cms/kernels/python3), which includes most of the Python packages commonly used for HEP analyses. This environment corresponds to the Python3 (default) Jupyter kernel.

Tip

Before creating custom environments, consult with the Analysis Facility support. It may be easier to install missing packages into the default environment.

  • List all available Conda environments:

    conda env list
    
  • List all available Jupyter kernels:

    jupyter kernelspec list
    

    or simply click the [+] button (New Launcher) in the AF interface.

Creating a custom Jupyter kernel: minimal example

The basic recipe to create a custom kernel is straightforward:

  1. Create a Conda environment in a desired location with a desired name.

    (See different ways to create Conda environments below.)

  2. Istall ipykernel package and wait for 1-2 minutes.

  3. A new kernel with the same name as the Conda environment will appear in Jupyter.

# path to your Conda environments on Depot:
conda_envs_path="/depot/cms/conda_envs/$USER"

# or under /work/, if you are not a Purdue user:
# conda_envs_path="/work/users/$USER"

# name of the new environment:
conda_env_name="my-new-env"

# create a new environment with ipykernel package installed
conda create -y --prefix $conda_envs_path/$conda_env_name python=3.10 ipykernel

# activate environment
conda activate $conda_envs_path/$conda_env_name

Warning

Since Jupyter kernel names are based on the Conda environment names, one should avoid creating multiple Conda environments with the same name. Also, one should avoid using names python3 and python3-ml to name Conda environments, as these names are reserved for the pre-installed kernels.

Creating custom Conda environments

There are multiple ways to create a custom Conda environment, the particular choice of a method depends on the use case.

Tip

Use mamba instead of conda where possible - it will significantly accelerate installation of packages.

Option 2: Create a Conda environment from scratch

This option is preferred if you want to start from a clean environment and install all packages manually.

conda create --prefix /some-path/my-new-env python=3.10 ipykernel
conda activate /some-path/my-new-env
conda install numpy pandas # install any packages here
conda deactivate

Option 3: Clone an existing environment into a new environment

This is a simple method to duplicate an existing environment.

conda create --prefix /path/to/cloned_env --clone /path/to/original_env

Uninstalling a Conda environment

# list available environments
conda info --envs

# uninstall an environment by name or by path
conda remove --name <env-name> --all
# or
conda remove --prefix /path/to/env --all