Skip to content

Jupyter Lab/Notebook


Setup Jupyter w/ Conda

  • Make a conda kernel (env) available to Jupyter:

    • Install ipykernel in the environment.

1
2
3
conda activate myKernel
conda install ipykernel
python3 -m ipykernel install --user --name myKernel --display-name "My Kernel (myKernel)"
myKernel is the conda env name. My Kernel is the display name.

When done, the noted kernel will be available within the Jupyter UI.