Translations:JupyterNotebook/67/fr: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(5 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
<ol> | |||
<li>Chargez le module R. {{Command2|module load r}} | |||
<li>Activez l'environnement virtuel Jupyter Notebook. {{Command2|source $HOME/jupyter_py3/bin/activate}} | |||
<li>Installez les dépendances du noyau. {{Command2|prompt=(jupyter_py3)_[name@server ~]$|R -e "install.packages(c('crayon', 'pbdZMQ', 'devtools'), repos{{=}}'http://cran.us.r-project.org')"}} | |||
<li>Installez le noyau R. {{Command2|prompt=(jupyter_py3)_[name@server ~]$|R -e "devtools::install_github(paste0('IRkernel/', c('repr', 'IRdisplay', 'IRkernel')))"}} | |||
<li>Installez le fichier de configuration du noyau R. {{Command2|prompt=(jupyter_py3)_[name@server ~]$|R -e "IRkernel::installspec()"}} | |||
</ol> |
Latest revision as of 20:35, 18 January 2022
- Chargez le module R.
[name@server ~]$ module load r
- Activez l'environnement virtuel Jupyter Notebook.
[name@server ~]$ source $HOME/jupyter_py3/bin/activate
- Installez les dépendances du noyau.
(jupyter_py3)_[name@server ~]$ R -e "install.packages(c('crayon', 'pbdZMQ', 'devtools'), repos='http://cran.us.r-project.org')"
- Installez le noyau R.
(jupyter_py3)_[name@server ~]$ R -e "devtools::install_github(paste0('IRkernel/', c('repr', 'IRdisplay', 'IRkernel')))"
- Installez le fichier de configuration du noyau R.
(jupyter_py3)_[name@server ~]$ R -e "IRkernel::installspec()"