Translations:JupyterNotebook/5/fr: Difference between revisions
Jump to navigation
Jump to search
m (FuzzyBot moved page Translations:Jupyter/5/fr to Translations:JupyterNotebook/5/fr without leaving a redirect: Part of translatable page "Jupyter") |
No edit summary |
||
Line 1: | Line 1: | ||
<ol> | <ol> | ||
<li>Chargez le module Python. | <li>Chargez le module Python. | ||
{{Command2|module load python/3. | {{Command2|module load python/3.7}} | ||
<li>Créez un nouvel environnement virtuel Python. | <li>Créez un nouvel environnement virtuel Python. | ||
{{Command2|virtualenv $HOME/jupyter_py3}} | {{Command2|virtualenv $HOME/jupyter_py3}} |
Revision as of 18:09, 27 July 2021
- Chargez le module Python.
[name@server ~]$ module load python/3.7
- Créez un nouvel environnement virtuel Python.
[name@server ~]$ virtualenv $HOME/jupyter_py3
- Activez votre nouvel environnement virtuel Python.
[name@server ~]$ source $HOME/jupyter_py3/bin/activate
- Installez Jupyter Notebook dans votre nouvel environnement virtuel Python.
(jupyter_py3)_[name@server ~]$ pip install jupyter
- Dans votre nouvel environnement virtuel, créez un script (wrapper) pour lancer Jupyter Notebook.
(jupyter_py3)_[name@server ~]$ echo -e '#!/bin/bash\nunset XDG_RUNTIME_DIR\njupyter notebook --ip $(hostname -f) --no-browser' > $VIRTUAL_ENV/bin/notebook.sh
- Enfin, rendez le script exécutable.
(jupyter_py3)_[name@server ~]$ chmod u+x $VIRTUAL_ENV/bin/notebook.sh