Translations:JupyterNotebook/5/fr: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 15: | Line 15: | ||
{{Command2 | {{Command2 | ||
|prompt=(jupyter_py3)_[name@server ~]$ | |prompt=(jupyter_py3)_[name@server ~]$ | ||
|echo -e '#!/bin/bash\ | |echo -e '#!/bin/bash\nexport JUPYTER_RUNTIME_DIR{{=}}$SLURM_TMPDIR/jupyter\njupyter notebook --ip $(hostname -f) --no-browser' > $VIRTUAL_ENV/bin/notebook.sh | ||
}} | }} | ||
<li>Enfin, rendez le script exécutable. | <li>Enfin, rendez le script exécutable. |
Revision as of 18:31, 8 September 2023
- 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 --no-index --upgrade pip (jupyter_py3)_[name@server ~]$ pip install --no-index jupyter
- Dans votre nouvel environnement virtuel, créez un script (wrapper) pour lancer Jupyter Notebook.
(jupyter_py3)_[name@server ~]$ echo -e '#!/bin/bash\nexport JUPYTER_RUNTIME_DIR=$SLURM_TMPDIR/jupyter\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