Translations:JupyterNotebook/78/fr: Difference between revisions

From Alliance Doc
Jump to navigation Jump to search
No edit summary
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 3: Line 3:
<li>Créez un nouvel environnement Python. {{Command2|virtualenv $HOME/jupyter_py3.5}}
<li>Créez un nouvel environnement Python. {{Command2|virtualenv $HOME/jupyter_py3.5}}
<li>Activez le nouvel environnement Python. {{Command2|source $HOME/jupyter_py3.5/bin/activate}}
<li>Activez le nouvel environnement Python. {{Command2|source $HOME/jupyter_py3.5/bin/activate}}
<li>Installez la bibliothèque <code>ipykernel</code>. {{Command2|pip install ipykernel}}
<li>Installez la bibliothèque <code>ipykernel</code>. {{Command2|prompt=(jupyter_py3.5)_[name@server ~]$|pip install ipykernel}}
<li>Générez le fichier de configuration du ''kernel''.  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"}}
<li>Générez le fichier de configuration du noyau.  Remplacez <code><unique_name></code> par un nom unique pour votre noyau. {{Command2|prompt=(jupyter_py3.5)_[name@server ~]$|python -m ipykernel install --user --name <unique_name> --display-name "Python 3.5 Kernel"}}
<li>Désactivez l'environnement virtuel. {{Command2|source deactivate}}
<li>Désactivez l'environnement virtuel. {{Command2|prompt=(jupyter_py3.5)_[name@server ~]$|deactivate}}
</ol>
</ol>

Latest revision as of 20:33, 18 January 2022

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (JupyterNotebook)
<ol>
<li>Load the Python module. {{Command2|module load python/3.5}}
<li>Create a new Python virtual environment. {{Command2|virtualenv $HOME/jupyter_py3.5}}
<li>Activate your newly created Python virtual environment. {{Command2|source $HOME/jupyter_py3.5/bin/activate}}
<li>Install the <code>ipykernel</code> library. {{Command2|prompt=(jupyter_py3.5)_[name@server ~]$|pip install ipykernel}}
<li>Generate the kernel spec file.  Substitute <code><unique_name></code> by a name that will uniquely identify your kernel. {{Command2|prompt=(jupyter_py3.5)_[name@server ~]$|python -m ipykernel install --user --name <unique_name> --display-name "Python 3.5 Kernel"}}
<li>Deactivate the virtual environment. {{Command2|prompt=(jupyter_py3.5)_[name@server ~]$|deactivate}}
</ol>
  1. Chargez le module Python.
    [name@server ~]$ module load python/3.5
    
  2. Créez un nouvel environnement Python.
    [name@server ~]$ virtualenv $HOME/jupyter_py3.5
    
  3. Activez le nouvel environnement Python.
    [name@server ~]$ source $HOME/jupyter_py3.5/bin/activate
    
  4. Installez la bibliothèque ipykernel.
    (jupyter_py3.5)_[name@server ~]$ pip install ipykernel
    
  5. Générez le fichier de configuration du noyau. Remplacez <unique_name> par un nom unique pour votre noyau.
    (jupyter_py3.5)_[name@server ~]$ python -m ipykernel install --user --name <unique_name> --display-name "Python 3.5 Kernel"
    
  6. Désactivez l'environnement virtuel.
    (jupyter_py3.5)_[name@server ~]$ deactivate