Creating Conda environments and Jupyter kernels¶
Use Pixi for new projects
The recommended way to manage analysis software at Purdue AF is Pixi. Conda environments are supported for existing projects.
In the Purdue Analysis Facility, Python-based Jupyter kernels can be created from Conda environments.
-
List all available Conda environments:
-
List all available Jupyter kernels:
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:
- Create a Conda environment in a desired location with a desired name (see different ways to create Conda environments below).
- Install the
ipykernelpackage and wait for 1–2 minutes. - 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 the ipykernel package installed
conda create -y --prefix $conda_envs_path/$conda_env_name python=3.12 ipykernel
# activate the environment
conda activate $conda_envs_path/$conda_env_name
Warning
Since Jupyter kernel names are based on the Conda environment names, avoid
creating multiple Conda environments with the same name, or with the name of
a kernel that already exists (see jupyter kernelspec list).
Creating custom Conda environments¶
There are multiple ways to create a custom Conda environment; the particular choice of method depends on the use case.
Tip
Use mamba instead of conda where possible — it significantly accelerates
the installation of packages.
Option 1 (recommended): create a Conda environment from a YAML file¶
The main benefits of this approach are the reproducibility and portability of the resulting environment — it can be easily rebuilt anywhere from the same YAML file.
-
Here is an example of an
environment.yamlfile: -
Additional Conda repositories may be specified under the
channels:section, e.g.: -
Once the list of packages is finalized, create a Conda environment in a desired location (in this example the environment will be created with the name
my-new-env):Warning
Conda environments can take up a lot of space (up to several dozen GB), so do not store them in your home directory — see Storing custom Pixi or Conda environments.
-
To install more packages into the environment or change package versions, the recommended method is to add the package name and/or version into the same YAML file, and then update the environment using the following commands:
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.12 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: