rsnt_translations
56,430
edits
No edit summary |
(Created page with "# Chargez le module Python. {{Command2|module load python/3.5}} # Créez un nouvel environnement Python. {{Command2|virtualenv $HOME/jupyter_py3.5}} # Activez le nouvel enviro...") |
||
Line 205: | Line 205: | ||
=== Python === | === Python === | ||
# | # Chargez le module Python. {{Command2|module load python/3.5}} | ||
# | # Créez un nouvel environnement Python. {{Command2|virtualenv $HOME/jupyter_py3.5}} | ||
# | # Activez le nouvel environnement Python. {{Command2|source $HOME/jupyter_py3.5/bin/activate}} | ||
# | # Installez la bibliothèque <code>ipykernel</code>. {{Command2|pip install ipykernel}} | ||
# Generate the kernel spec file. | # Generate the kernel spec file. Remplacez <code><unique_name></code> par un nom unique pour votre noyau. {{Command2|python -m ipykernel install --user --name <unique_name> --display-name "Python 3.5 Kernel"}} | ||
# | # Désactivez l'environnement virtuel. {{Command2|source deactivate}} | ||
For more information, see the [http://ipython.readthedocs.io/en/stable/install/kernel_install.html ipykernel documentation]. | For more information, see the [http://ipython.readthedocs.io/en/stable/install/kernel_install.html ipykernel documentation]. |