Conda Kernels - vicgalle/wiki-example GitHub Wiki

#TODO# : Explain everything. Configuring kernels in jupyterhub. Configure kernels in jupyter notebook.

To check the installed kernels: $ jupyter kernelspec list

To use the different environments (kernels) from jupyter you have to install ipykernel in each environment and activate all of them:

$ conda activate $env_name
$ pip install ipykernel
$ python -m ipykernel install --user --name $env_name [--display-name "$env_name"]
$ conda deactivate

Sources

https://stackoverflow.com/questions/28831854/how-do-i-add-python3-kernel-to-jupyter-ipython

https://ipython.readthedocs.io/en/latest/install/kernel_install.html