Advanced Jupyter configuration: Difference between revisions

From Alliance Doc
Jump to navigation Jump to search
(R Kernel reviewed)
(Added translation sections around code examples)
Line 1: Line 1:
{{draft}}
<languages />
<translate>


= Introduction =
= Introduction =
Line 20: Line 21:
<li>Load a Python module, either the default one (as shown below) or
<li>Load a Python module, either the default one (as shown below) or
a specific version (see available versions with <code>module avail python</code>):
a specific version (see available versions with <code>module avail python</code>):
{{Command2
</translate>{{Command2
|module load python
|module load python
}}
}}
</li>
</li><translate>
<li>Create a new Python virtual environment:
<li>Create a new Python virtual environment:
{{Command2
</translate>{{Command2
|virtualenv --no-download $HOME/jupyter_py3
|virtualenv --no-download $HOME/jupyter_py3
}}
}}
</li>
</li><translate>
<li>Activate your newly created Python virtual environment:
<li>Activate your newly created Python virtual environment:
{{Command2
</translate>{{Command2
|source $HOME/jupyter_py3/bin/activate
|source $HOME/jupyter_py3/bin/activate
}}
}}
</li>
</li><translate>
<li>Install JupyterLab in your new virtual environment (note: it takes a few minutes):
<li>Install JupyterLab in your new virtual environment (note: it takes a few minutes):
{{Command2
</translate>{{Command2
|prompt=(jupyter_py3) [name@server ~]$
|prompt=(jupyter_py3) [name@server ~]$
|pip install --no-index jupyterlab
|pip install --no-index jupyterlab
}}
}}
</li>
</li><translate>
<li>In the virtual environment, create a wrapper script that launches JupyterLab:
<li>In the virtual environment, create a wrapper script that launches JupyterLab:
{{Command2
</translate>{{Command2
|prompt=(jupyter_py3) [name@server ~]$
|prompt=(jupyter_py3) [name@server ~]$
|echo -e '#!/bin/bash\nunset XDG_RUNTIME_DIR\njupyter-lab --ip $(hostname -f) --no-browser' > $VIRTUAL_ENV/bin/jupyterlab.sh
|echo -e '#!/bin/bash\nunset XDG_RUNTIME_DIR\njupyter-lab --ip $(hostname -f) --no-browser' > $VIRTUAL_ENV/bin/jupyterlab.sh
}}
}}
</li>
</li><translate>
<li>Finally, make the script executable:
<li>Finally, make the script executable:
{{Command2
</translate>{{Command2
|prompt=(jupyter_py3) [name@server ~]$
|prompt=(jupyter_py3) [name@server ~]$
|chmod u+x $VIRTUAL_ENV/bin/jupyterlab.sh
|chmod u+x $VIRTUAL_ENV/bin/jupyterlab.sh
}}
}}
</li>
</li>
</ol>
</ol><translate>


= Installing extensions =
= Installing extensions =
Line 64: Line 65:
The following commands will install and enable the Jupyter Lmod extension in your environment (note: the third command takes a few minutes to complete):
The following commands will install and enable the Jupyter Lmod extension in your environment (note: the third command takes a few minutes to complete):


{{Commands2
</translate>{{Commands2
|prompt=(jupyter_py3) [name@server ~]$
|prompt=(jupyter_py3) [name@server ~]$
|module load nodejs
|module load nodejs
|pip install jupyterlmod
|pip install jupyterlmod
|jupyter labextension install jupyterlab-lmod
|jupyter labextension install jupyterlab-lmod
}}
}}<translate>


Instructions on how to configure ''software'' modules in the JupyterLab interface are provided in the [[JupyterHub#JupyterLab|JupyterHub page]].
Instructions on how to configure ''software'' modules in the JupyterLab interface are provided in the [[JupyterHub#JupyterLab|JupyterHub page]].
Line 79: Line 80:
Make sure the Python virtual environment in which you have installed JupyterLab is activated.
Make sure the Python virtual environment in which you have installed JupyterLab is activated.
For example, when you log into the cluster, you have to activate it again with:
For example, when you log into the cluster, you have to activate it again with:
{{Command2
</translate>{{Command2
|source $HOME/jupyter_py3/bin/activate
|source $HOME/jupyter_py3/bin/activate
}}
}}<translate>


To verify that your environment is ready, you can get a list of installed <code>jupyter*</code> packages with the following command:
To verify that your environment is ready, you can get a list of installed <code>jupyter*</code> packages with the following command:
{{Command2
</translate>{{Command2
|prompt=(jupyter_py3) [name@server ~]$
|prompt=(jupyter_py3) [name@server ~]$
|pip freeze {{!}} grep jupyter
|pip freeze {{!}} grep jupyter
Line 94: Line 95:
jupyterlab-pygments==0.1.2+computecanada
jupyterlab-pygments==0.1.2+computecanada
jupyterlab-server==2.3.0+computecanada
jupyterlab-server==2.3.0+computecanada
}}
}}<translate>


== Starting JupyterLab ==
== Starting JupyterLab ==
Line 100: Line 101:
To start a JupyterLab server, submit an interactive job with <code>salloc</code>. Adjust the parameters based on your needs. See [[Running jobs]] for more information.
To start a JupyterLab server, submit an interactive job with <code>salloc</code>. Adjust the parameters based on your needs. See [[Running jobs]] for more information.


{{Command2
</translate>{{Command2
|prompt=(jupyter_py3) [name@server ~]$
|prompt=(jupyter_py3) [name@server ~]$
|salloc --time{{=}}1:0:0 --ntasks{{=}}1 --cpus-per-task{{=}}2 --mem-per-cpu{{=}}1024M --account{{=}}def-yourpi srun $VIRTUAL_ENV/bin/jupyterlab.sh
|salloc --time{{=}}1:0:0 --ntasks{{=}}1 --cpus-per-task{{=}}2 --mem-per-cpu{{=}}1024M --account{{=}}def-yourpi srun $VIRTUAL_ENV/bin/jupyterlab.sh
Line 115: Line 116:
         http://node_name.int.cluster.computecanada.ca:8888/lab?token=101c3688298e78ab554ef86d93a196deaf5bcd2728fad4eb
         http://node_name.int.cluster.computecanada.ca:8888/lab?token=101c3688298e78ab554ef86d93a196deaf5bcd2728fad4eb
     or http://127.0.0.1:8888/lab?token=101c3688298e78ab554ef86d93a196deaf5bcd2728fad4eb
     or http://127.0.0.1:8888/lab?token=101c3688298e78ab554ef86d93a196deaf5bcd2728fad4eb
}}
}}<translate>


== Connecting to JupyterLab ==
== Connecting to JupyterLab ==
Line 127: Line 128:
On your computer, open a new terminal window and create the SSH tunnel with the following <code>sshuttle</code> command where <code><username></code> must be substituted by your Compute Canada username, and <code><cluster></code> by the cluster on which you have launched JupyterLab:
On your computer, open a new terminal window and create the SSH tunnel with the following <code>sshuttle</code> command where <code><username></code> must be substituted by your Compute Canada username, and <code><cluster></code> by the cluster on which you have launched JupyterLab:


{{Command2
</translate>{{Command2
|prompt=[name@local ~]$
|prompt=[name@local ~]$
|sshuttle --dns -Nr <username>@<cluster>.computecanada.ca
|sshuttle --dns -Nr <username>@<cluster>.computecanada.ca
}}
}}<translate>


Then, copy and paste the first provided HTTP address into your Web browser. In the above <code>salloc</code> example, this would be:
Then, copy and paste the first provided HTTP address into your Web browser. In the above <code>salloc</code> example, this would be:


<pre>
</translate><pre>
http://node_name.int.cluster.computecanada.ca:8888/lab?token=101c3688298e78ab554ef86d93a196deaf5bcd2728fad4eb
http://node_name.int.cluster.computecanada.ca:8888/lab?token=101c3688298e78ab554ef86d93a196deaf5bcd2728fad4eb
</pre>
</pre><translate>


=== From Windows ===
=== From Windows ===
Line 144: Line 145:
<ol>
<ol>
<li>Once JupyterLab is launched on a compute node (see [[#Starting_JupyterLab|Starting JupyterLab]]), you can extract the <code>hostname:port</code> and the <code>token</code> from the first provided HTTP address. For example:
<li>Once JupyterLab is launched on a compute node (see [[#Starting_JupyterLab|Starting JupyterLab]]), you can extract the <code>hostname:port</code> and the <code>token</code> from the first provided HTTP address. For example:
<pre>
</translate><pre>
http://node_name.int.cluster.computecanada.ca:8888/lab?token=101c368829...2728fad4eb
http://node_name.int.cluster.computecanada.ca:8888/lab?token=101c368829...2728fad4eb
       └────────────────────┬────────────────────┘          └──────────┬──────────┘
       └────────────────────┬────────────────────┘          └──────────┬──────────┘
                       hostname:port                                  token
                       hostname:port                                  token
</pre>
</pre>
</li>
</li><translate>
<li>Open a new Terminal tab in MobaXTerm. In the following command, substitute <code><hostname:port></code> by its corresponding value (refer to the above figure), substitute <code><username></code> by your Compute Canada username, and substitute <code><cluster></code> by the cluster on which you have launched JupyterLab:
<li>Open a new Terminal tab in MobaXTerm. In the following command, substitute <code><hostname:port></code> by its corresponding value (refer to the above figure), substitute <code><username></code> by your Compute Canada username, and substitute <code><cluster></code> by the cluster on which you have launched JupyterLab:
{{Command2
</translate>{{Command2
|prompt=[name@local ~]$
|prompt=[name@local ~]$
|ssh -L 8888:<hostname:port> <username>@<cluster>.computecanada.ca
|ssh -L 8888:<hostname:port> <username>@<cluster>.computecanada.ca
}}
}}
</li>
</li><translate>
<li> Open your Web browser and go to the following address where <code><token></code> must be substituted by the alphanumerical value extracted from the above figure:
<li>Open your Web browser and go to the following address where <code><token></code> must be substituted by the alphanumerical value extracted from the above figure:
<pre>
</translate><pre>
http://localhost:8888/?token=<token>
http://localhost:8888/?token=<token>
</pre>
</pre>
</li>
</li>
</ol>
</ol><translate>


== Shutting down JupyterLab ==
== Shutting down JupyterLab ==
Line 189: Line 190:
<ol>
<ol>
<li>Load the '''[[Julia]]''' module:
<li>Load the '''[[Julia]]''' module:
{{Command2
</translate>{{Command2
|prompt=(jupyter_py3) [name@server ~]$
|prompt=(jupyter_py3) [name@server ~]$
|module load julia
|module load julia
}}
}}
</li>
</li><translate>
<li>Install IJulia:
<li>Install IJulia:
{{Command2
</translate>{{Command2
|prompt=(jupyter_py3) [name@server ~]$
|prompt=(jupyter_py3) [name@server ~]$
|echo -e 'using Pkg\nPkg.add("IJulia")' {{!}} julia
|echo -e 'using Pkg\nPkg.add("IJulia")' {{!}} julia
}}
}}
</li>
</li><translate>
<li>'''Important''': start or restart a new JupyterLab session before using the Julia kernel.</li>
<li>'''Important''': start or restart a new JupyterLab session before using the Julia kernel.</li>
</ol>
</ol>
Line 211: Line 212:
<ol>
<ol>
<li>Make sure the same Julia module is loaded:
<li>Make sure the same Julia module is loaded:
{{Command2
</translate>{{Command2
|module load julia
|module load julia
}}
}}
</li>
</li><translate>
<li>Install any required package. For example with <code>Glob</code>:
<li>Install any required package. For example with <code>Glob</code>:
{{Command2
</translate>{{Command2
|echo -e 'using Pkg\nPkg.add("Glob")' {{!}} julia
|echo -e 'using Pkg\nPkg.add("Glob")' {{!}} julia
}}
}}
</li>
</li><translate>
<li>The newly installed Julia packages should already be usable in a notebook executed by the Julia kernel.</li>
<li>The newly installed Julia packages should already be usable in a notebook executed by the Julia kernel.</li>
</ol>
</ol>
Line 235: Line 236:
<ol>
<ol>
<li>Start from a clean Bash environment (this is only required if you are using the Jupyter ''Terminal'' via [[JupyterHub]] for the creation and configuration of the Python kernel):
<li>Start from a clean Bash environment (this is only required if you are using the Jupyter ''Terminal'' via [[JupyterHub]] for the creation and configuration of the Python kernel):
{{Command2
</translate>{{Command2
|env -i HOME{{=}}$HOME bash -l
|env -i HOME{{=}}$HOME bash -l
}}
}}
</li>
</li><translate>
<li>Load a Python module:
<li>Load a Python module:
{{Command2
</translate>{{Command2
|module load python
|module load python
}}
}}
</li>
</li><translate>
<li>Create a new Python virtual environment:
<li>Create a new Python virtual environment:
{{Command2
</translate>{{Command2
|virtualenv --no-download $HOME/jupyter_py3
|virtualenv --no-download $HOME/jupyter_py3
}}
}}
</li><translate>
<li>Activate your newly created Python virtual environment:
<li>Activate your newly created Python virtual environment:
{{Command2
</translate>{{Command2
|source $HOME/jupyter_py3/bin/activate
|source $HOME/jupyter_py3/bin/activate
}}
}}
</ol>
</ol>
</li>
</li><translate>
<li>Install the <code>ipykernel</code> library:
<li>Install the <code>ipykernel</code> library:
{{Command2
</translate>{{Command2
|prompt=(jupyter_py3) [name@server ~]$
|prompt=(jupyter_py3) [name@server ~]$
|pip install --no-index ipykernel
|pip install --no-index ipykernel
}}
}}
</li>
</li><translate>
<li>Create the common <code>kernels</code> folder:
<li>Create the common <code>kernels</code> folder:
{{Command2
</translate>{{Command2
|prompt=(jupyter_py3) [name@server ~]$
|prompt=(jupyter_py3) [name@server ~]$
|mkdir -p ~/.local/share/jupyter/kernels
|mkdir -p ~/.local/share/jupyter/kernels
}}
}}
</li>
</li><translate>
<li>Generate the kernel spec file. Substitute <code><unique_name></code> by a name that will uniquely identify your kernel:
<li>Generate the kernel spec file. Substitute <code><unique_name></code> by a name that will uniquely identify your kernel:
{{Command2
</translate>{{Command2
|prompt=(jupyter_py3) [name@server ~]$
|prompt=(jupyter_py3) [name@server ~]$
|python -m ipykernel install --user --name <unique_name> --display-name "Python 3.x Kernel"
|python -m ipykernel install --user --name <unique_name> --display-name "Python 3.x Kernel"
}}
}}
</li><translate>
<li>'''Important''': start or restart a new JupyterLab session before using the Python kernel.</li>
<li>'''Important''': start or restart a new JupyterLab session before using the Python kernel.</li>
</ol>
</ol>
Line 283: Line 286:
<li>If you are using the Jupyter ''Terminal'' via [[JupyterHub]], make sure the activated Python virtual environment is running in a clean Bash environment. See the above section for details.</li>
<li>If you are using the Jupyter ''Terminal'' via [[JupyterHub]], make sure the activated Python virtual environment is running in a clean Bash environment. See the above section for details.</li>
<li>Install any required library. For example, <code>numpy</code>:
<li>Install any required library. For example, <code>numpy</code>:
{{Command2
</translate>{{Command2
|prompt=(jupyter_py3) [name@server ~]$
|prompt=(jupyter_py3) [name@server ~]$
|pip install --no-index numpy
|pip install --no-index numpy
}}
}}
</li>
</li><translate>
<li>The newly installed Python libraries can now be imported in any notebook using the <code>Python 3.x Kernel</code>.</li>
<li>The newly installed Python libraries can now be imported in any notebook using the <code>Python 3.x Kernel</code>.</li>
</ol>
</ol>
Line 301: Line 304:
<ol>
<ol>
<li>Load an R module:
<li>Load an R module:
{{Command2
</translate>{{Command2
|prompt=(jupyter_py3) [name@server ~]$
|prompt=(jupyter_py3) [name@server ~]$
|module load r/4.1
|module load r/4.1
}}
}}
</li>
</li><translate>
<li>Install the R kernel dependencies (<code>crayon</code>, <code>pbdZMQ</code>, <code>devtools</code>) - this will take up to 10 minutes, and packages should be installed in a local directory like <code>~/R/x86_64-pc-linux-gnu-library/4.1</code>:
<li>Install the R kernel dependencies (<code>crayon</code>, <code>pbdZMQ</code>, <code>devtools</code>) - this will take up to 10 minutes, and packages should be installed in a local directory like <code>~/R/x86_64-pc-linux-gnu-library/4.1</code>:
{{Command2
</translate>{{Command2
|prompt=(jupyter_py3) [name@server ~]$
|prompt=(jupyter_py3) [name@server ~]$
|R --no-save
|R --no-save
|result=> install.packages(c('crayon', 'pbdZMQ', 'devtools'), repos{{=}}'http://cran.us.r-project.org')
|result=> install.packages(c('crayon', 'pbdZMQ', 'devtools'), repos{{=}}'http://cran.us.r-project.org')
}}
}}
</li>
</li><translate>
<li>Install the R kernel.
<li>Install the R kernel.
{{Command2
</translate>{{Command2
|prompt=>  
|prompt=>  
|devtools::install_github(paste0('IRkernel/', c('repr', 'IRdisplay', 'IRkernel')))
|devtools::install_github(paste0('IRkernel/', c('repr', 'IRdisplay', 'IRkernel')))
}}
}}
</li>
</li><translate>
<li>Install the R kernel spec file.
<li>Install the R kernel spec file.
{{Command2
</translate>{{Command2
|prompt=>  
|prompt=>  
|IRkernel::installspec()
|IRkernel::installspec()
}}
}}
</li>
</li><translate>
<li>'''Important''': start or restart a new JupyterLab session before using the R kernel.</li>
<li>'''Important''': start or restart a new JupyterLab session before using the R kernel.</li>
</ol>
</ol>
Line 337: Line 340:
<ol>
<ol>
<li>Make sure the same R module is loaded:
<li>Make sure the same R module is loaded:
{{Command2
</translate>{{Command2
|module load r/4.1
|module load r/4.1
}}
}}
</li>
</li><translate>
<li>Start the R shell and install any required package. For example with <code>doParallel</code>:
<li>Start the R shell and install any required package. For example with <code>doParallel</code>:
{{Command2
</translate>{{Command2
|R --no-save
|R --no-save
|result=> install.packages('doParallel', repos{{=}}'http://cran.us.r-project.org')
|result=> install.packages('doParallel', repos{{=}}'http://cran.us.r-project.org')
}}
}}
</li>
</li><translate>
<li>The newly installed R packages should already be usable in a notebook executed by the R kernel.</li>
<li>The newly installed R packages should already be usable in a notebook executed by the R kernel.</li>
</ol>
</ol>


= References =
= References =
</translate>

Revision as of 16:21, 8 December 2021

Other languages:

Introduction[edit]

  • Project Jupyter: "a non-profit, open-source project, born out of the IPython Project in 2014 as it evolved to support interactive data science and scientific computing across all programming languages."[1]
  • JupyterLab: "a web-based interactive development environment for notebooks, code, and data. Its flexible interface allows users to configure and arrange workflows in data science, scientific computing, computational journalism, and machine learning. A modular design allows for extensions that expand and enrich functionality."[2]

A JupyterLab server should only run on a compute node or on a cloud instance; cluster login nodes are not a good choice because they impose various limits which can stop applications if they consume too much CPU time or memory. In the case of using a compute node, users can reserve compute resources by submitting a job that requests a specific number of CPUs (and optionally GPUs), an amount of memory and the run time. In this page, we give detailed instructions on how to configure and submit a JupyterLab job on any national cluster.

But, what about ...

  • Jupyter Notebook? JupyterLab is a more modern and flexible interface than the classic Jupyter Notebook
  • A preconfigured JupyterLab service? Some regional partners provide a web portal named JupyterHub. For instance, many of these portals offer a preconfigured JupyterLab service so that users do not have to create their own setup. To learn more, visit the JupyterHub wiki page

Installing JupyterLab[edit]

These instructions install JupyterLab with the pip command in a Python virtual environment:

  1. Load a Python module, either the default one (as shown below) or a specific version (see available versions with module avail python):
    [name@server ~]$ module load python
    
  2. Create a new Python virtual environment:
    [name@server ~]$ virtualenv --no-download $HOME/jupyter_py3
    
  3. Activate your newly created Python virtual environment:
    [name@server ~]$ source $HOME/jupyter_py3/bin/activate
    
  4. Install JupyterLab in your new virtual environment (note: it takes a few minutes):
    (jupyter_py3) [name@server ~]$ pip install --no-index jupyterlab
    
  5. In the virtual environment, create a wrapper script that launches JupyterLab:
    (jupyter_py3) [name@server ~]$ echo -e '#!/bin/bash\nunset XDG_RUNTIME_DIR\njupyter-lab --ip $(hostname -f) --no-browser' > $VIRTUAL_ENV/bin/jupyterlab.sh
    
  6. Finally, make the script executable:
    (jupyter_py3) [name@server ~]$ chmod u+x $VIRTUAL_ENV/bin/jupyterlab.sh
    

Installing extensions[edit]

Extensions allow you to add functionalities and modify the JupyterLab’s user interface.

Jupyter Lmod[edit]

Jupyter Lmod is an extension that allows you to interact with environment modules before launching kernels. The extension uses the Lmod's Python interface to accomplish module-related tasks like loading, unloading, saving a collection, etc.

The following commands will install and enable the Jupyter Lmod extension in your environment (note: the third command takes a few minutes to complete):

(jupyter_py3) [name@server ~]$ module load nodejs
(jupyter_py3) [name@server ~]$ pip install jupyterlmod
(jupyter_py3) [name@server ~]$ jupyter labextension install jupyterlab-lmod

Instructions on how to configure software modules in the JupyterLab interface are provided in the JupyterHub page.

Using your installation[edit]

Activating the environment[edit]

Make sure the Python virtual environment in which you have installed JupyterLab is activated.

For example, when you log into the cluster, you have to activate it again with:

[name@server ~]$ source $HOME/jupyter_py3/bin/activate

To verify that your environment is ready, you can get a list of installed jupyter* packages with the following command:

(jupyter_py3) [name@server ~]$ pip freeze | grep jupyter
jupyter-client==7.1.0+computecanada
jupyter-core==4.9.1+computecanada
jupyter-server==1.9.0+computecanada
jupyterlab==3.1.7+computecanada
jupyterlab-pygments==0.1.2+computecanada
jupyterlab-server==2.3.0+computecanada

Starting JupyterLab[edit]

To start a JupyterLab server, submit an interactive job with salloc. Adjust the parameters based on your needs. See Running jobs for more information.

(jupyter_py3) [name@server ~]$ salloc --time=1:0:0 --ntasks=1 --cpus-per-task=2 --mem-per-cpu=1024M --account=def-yourpi srun $VIRTUAL_ENV/bin/jupyterlab.sh
...
[I 2021-12-06 10:37:14.262 ServerApp] jupyterlab | extension was successfully linked.
...
[I 2021-12-06 10:37:39.259 ServerApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 2021-12-06 10:37:39.356 ServerApp]

    To access the server, open this file in a browser:
        file:///home/name/.local/share/jupyter/runtime/jpserver-198146-open.html
    Or copy and paste one of these URLs:
        http://node_name.int.cluster.computecanada.ca:8888/lab?token=101c3688298e78ab554ef86d93a196deaf5bcd2728fad4eb
     or http://127.0.0.1:8888/lab?token=101c3688298e78ab554ef86d93a196deaf5bcd2728fad4eb

Connecting to JupyterLab[edit]

To access JupyterLab running on a compute node from your web browser, you will need to create an SSH tunnel from your computer through the cluster since the compute nodes are not directly accessible from the Internet.

From Linux or macOS[edit]

On a Linux or macOS system, we recommend using the sshuttle Python package.

On your computer, open a new terminal window and create the SSH tunnel with the following sshuttle command where <username> must be substituted by your Compute Canada username, and <cluster> by the cluster on which you have launched JupyterLab:

[name@local ~]$ sshuttle --dns -Nr <username>@<cluster>.computecanada.ca

Then, copy and paste the first provided HTTP address into your Web browser. In the above salloc example, this would be:

http://node_name.int.cluster.computecanada.ca:8888/lab?token=101c3688298e78ab554ef86d93a196deaf5bcd2728fad4eb

From Windows[edit]

An SSH tunnel can be created from Windows using MobaXTerm as follows. Note: this procedure also works from a terminal in any Unix system (like Linux, macOS, etc).

  1. Once JupyterLab is launched on a compute node (see Starting JupyterLab), you can extract the hostname:port and the token from the first provided HTTP address. For example:
    http://node_name.int.cluster.computecanada.ca:8888/lab?token=101c368829...2728fad4eb
           └────────────────────┬────────────────────┘           └──────────┬──────────┘
                          hostname:port                                   token
    
  2. Open a new Terminal tab in MobaXTerm. In the following command, substitute <hostname:port> by its corresponding value (refer to the above figure), substitute <username> by your Compute Canada username, and substitute <cluster> by the cluster on which you have launched JupyterLab:
    [name@local ~]$ ssh -L 8888:<hostname:port> <username>@<cluster>.computecanada.ca
    
  3. Open your Web browser and go to the following address where <token> must be substituted by the alphanumerical value extracted from the above figure:
    http://localhost:8888/?token=<token>
    

Shutting down JupyterLab[edit]

You can shut down the JupyterLab server before the walltime limit by pressing Ctrl-C twice in the terminal that launched the interactive job.

If you have used MobaXterm to create an SSH tunnel, press Ctrl-D to shut down the tunnel.

Adding kernels[edit]

It is possible to add kernels for other programming languages, for a different Python version or for a persistent virtual environment that has all required packages and libraries for your project. Refer to Making kernels for Jupyter to learn more.

The installation of a new kernel is done in two steps:

  1. Installation of the packages that will allow the language interpreter to communicate with the Jupyter interface.
  2. Creation of a file that will indicate to JupyterLab how to initiate a communication channel with the language interpreter. This file is called a kernel spec file, and it will be saved in a sub-folder of ~/.local/share/jupyter/kernels.

In the following sections, we provide a few examples of the kernel installation procedure.

Julia Kernel[edit]

Prerequisites:

  1. The configuration of a Julia kernel depends on a Python virtual environment that already has all the Python Kernel dependencies. If you do not have such virtual environment, make sure to follow instructions listed in the next section.
  2. Since the installation of Julia packages requires an access to Internet, the configuration of a Julia kernel must be done in a remote shell session on a login node.

Once you have a Python virtual environment available and activated, you may configure the Julia kernel:

  1. Load the Julia module:
    (jupyter_py3) [name@server ~]$ module load julia
    
  2. Install IJulia:
    (jupyter_py3) [name@server ~]$ echo -e 'using Pkg\nPkg.add("IJulia")' | julia
    
  3. Important: start or restart a new JupyterLab session before using the Julia kernel.

For more information, see the IJulia documentation.

Installing more Julia packages[edit]

As in the above installation procedure, it is required to install Julia packages from a login node, but the Python virtual environment could be deactivated:

  1. Make sure the same Julia module is loaded:
    [name@server ~]$ module load julia
    
  2. Install any required package. For example with Glob:
    [name@server ~]$ echo -e 'using Pkg\nPkg.add("Glob")' | julia
    
  3. The newly installed Julia packages should already be usable in a notebook executed by the Julia kernel.

Python Kernel[edit]

In a terminal with an active session on the remote server, you may configure a Python virtual environment with all the required Python modules and a custom Python kernel for JupyterLab. Here are the initial steps for the simplest Jupyter configuration in a new Python virtual environment:

  1. If you do not have a Python virtual environment for Jupyter, create one. Then, activate it:
    1. Start from a clean Bash environment (this is only required if you are using the Jupyter Terminal via JupyterHub for the creation and configuration of the Python kernel):
      [name@server ~]$ env -i HOME=$HOME bash -l
      
    2. Load a Python module:
      [name@server ~]$ module load python
      
    3. Create a new Python virtual environment:
      [name@server ~]$ virtualenv --no-download $HOME/jupyter_py3
      
    4. Activate your newly created Python virtual environment:
      [name@server ~]$ source $HOME/jupyter_py3/bin/activate
      
  2. Install the ipykernel library:
    (jupyter_py3) [name@server ~]$ pip install --no-index ipykernel
    
  3. Create the common kernels folder:
    (jupyter_py3) [name@server ~]$ mkdir -p ~/.local/share/jupyter/kernels
    
  4. Generate the kernel spec file. Substitute <unique_name> by a name that will uniquely identify your kernel:
    (jupyter_py3) [name@server ~]$ python -m ipykernel install --user --name <unique_name> --display-name "Python 3.x Kernel"
    
  5. Important: start or restart a new JupyterLab session before using the Python kernel.

For more information, see the ipykernel documentation.

Installing more Python libraries[edit]

Based on the Python virtual environment configured in the previous section:

  1. If you are using the Jupyter Terminal via JupyterHub, make sure the activated Python virtual environment is running in a clean Bash environment. See the above section for details.
  2. Install any required library. For example, numpy:
    (jupyter_py3) [name@server ~]$ pip install --no-index numpy
    
  3. The newly installed Python libraries can now be imported in any notebook using the Python 3.x Kernel.

R Kernel[edit]

Prerequisites:

  1. Configuring an R kernel still depends on a Python virtual environment that already has all the Python Kernel dependencies. If you do not have such virtual environment, make sure to follow instructions listed in the previous section.
  2. Since the installation of R packages requires an access to CRAN, the configuration of an R kernel must be done in a remote shell session on a login node.

Once you have a Python virtual environment available and activated, you may configure the R kernel:

  1. Load an R module:
    (jupyter_py3) [name@server ~]$ module load r/4.1
    
  2. Install the R kernel dependencies (crayon, pbdZMQ, devtools) - this will take up to 10 minutes, and packages should be installed in a local directory like ~/R/x86_64-pc-linux-gnu-library/4.1:
    (jupyter_py3) [name@server ~]$ R --no-save
    > install.packages(c('crayon', 'pbdZMQ', 'devtools'), repos='http://cran.us.r-project.org')
    
  3. Install the R kernel.
    > devtools::install_github(paste0('IRkernel/', c('repr', 'IRdisplay', 'IRkernel')))
    
  4. Install the R kernel spec file.
    > IRkernel::installspec()
    
  5. Important: start or restart a new JupyterLab session before using the R kernel.

For more information, see the IRKernel documentation.

Installing more R packages[edit]

The installation of R packages cannot be done from notebooks because there is no access to CRAN. As in the above installation procedure, it is required to install R packages from a login node, but the Python virtual environment could be deactivated:

  1. Make sure the same R module is loaded:
    [name@server ~]$ module load r/4.1
    
  2. Start the R shell and install any required package. For example with doParallel:
    [name@server ~]$ R --no-save
    > install.packages('doParallel', repos='http://cran.us.r-project.org')
    
  3. The newly installed R packages should already be usable in a notebook executed by the R kernel.

References[edit]