Translations:JupyterNotebook/61/en
Jump to navigation
Jump to search
- Load the Anaconda module.
[name@server ~]$ module load miniconda3
- Optional: Activate a specific conda virtual environment. Substitute
<your_env>
by the name you want to attribute to your Anaconda virtual environment.[name@server ~]$ source activate <your_env>
- Install the
ipykernel
library.[name@server ~]$ conda install ipykernel
- Generate the kernel spec file. Substitute
<unique_name>
by a name that will uniquely identify your kernel.[name@server ~]$ python -m ipykernel install --user --name <unique_name> --display-name "My Anaconda 3 Kernel"
- Optional: Deactivate the virtual environment.
[name@server ~]$ source deactivate