JupyterNotebook: Difference between revisions

From Alliance Doc
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(179 intermediate revisions by 15 users not shown)
Line 1: Line 1:
{{Draft}}
<languages />


=Introduction=
{{Warning|title=Advanced material|content=This page is for advanced users. Please see [[JupyterHub]] instead.}}


Jupyter notebook comes in one Python model on Graham. You can get it working on the login node (not recommended), and the compute nodes (highly recommended). Note that Login nodes impose various user- and process-based limits, so notebooks running there may be killed if they consume significant cpu-time or memory. You will have to submit a job requesting the # of CPU (or even GPU), amount of memory and runtime. Here, we give the instructions to submit a Jupyter job.
<translate>
==Introduction== <!--T:1-->


= Installing Jupyter Notebook =
<!--T:38-->
"Project Jupyter is 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."<ref>http://jupyter.org/about.html</ref>


To install Jupyter we will use the <code>pip</code> command and install it into a [[Python#Creating_and_using_a_virtual_environment | Python virtual environments]]. The below instructions install for Python 3.5.2. The below instructions install for Python 3.5.2 but you can also install for Python 3.5.Y or 2.7.X by loading a different Python module.
<!--T:51-->
"The Jupyter Notebook is an open-source web application that allows you to create and share documents that contain live code, equations, visualizations and narrative text."<ref>http://www.jupyter.org/</ref>


Load the Python module:
<!--T:2-->
{{Command|module load python/3.5.2}}
You can run Jupyter Notebook on a compute node or on a login node (not recommended). Note that login nodes impose various user- and process-based limits, so applications running there may be killed if they consume too much CPU time or memory. To use a compute node you will have to submit a job requesting the number of CPUs (and optionally GPUs), the amount of memory, and the run time. Here, we give instructions to submit a Jupyter Notebook job.
Create a new python virtual environment:
{{Command|virtualenv jupyter_py3}}


Activate your newly created python virtual environment:
<!--T:50-->
{{Command|source jupyter_py3/bin/activate}}
'''Other information:'''
* Since Jupyter Notebook is the older Jupyter interface, please consider installing '''[[Advanced_Jupyter_configuration|JupyterLab]]''' instead.
* If you are instead looking for a preconfigured Jupyter environment, please see the '''[[Jupyter]]''' page.


Install Jupyter into your newly created virtual environment:
== Installing Jupyter Notebook == <!--T:3-->
{{Command|pip install jupyter}}


= Connecting to a manually spawned Jupyter Notebook =
<!--T:4-->
These instructions install Jupyter Notebook with the <code>pip</code> command in a [[Python#Creating_and_using_a_virtual_environment | Python virtual environment]] in your home directory. The following instructions are for Python 3.6, but you can also install the application for a different version by loading a different Python module.


== Create a Tunnel ==
<!--T:5-->
<ol>
<li>Load the Python module.
{{Command2|module load python/3.7}}
<li>Create a new Python virtual environment.
{{Command2|virtualenv $HOME/jupyter_py3}}
<li>Activate your newly created Python virtual environment.
{{Command2|source $HOME/jupyter_py3/bin/activate}}
<li>Install Jupyter Notebook in your new virtual environment.
{{Commands2
|prompt=(jupyter_py3) [name@server ~]$
|pip install --no-index --upgrade pip
|pip install --no-index jupyter
}}
<li>In the virtual environment, create a wrapper script that launches Jupyter Notebook.
{{Command2
|prompt=(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
}}
<li>Finally, make the script executable.
{{Command2
|prompt=(jupyter_py3)_[name@server ~]$
|chmod u+x $VIRTUAL_ENV/bin/notebook.sh
}}
</ol>
 
== Installing extensions == <!--T:10-->
 
<!--T:11-->
Extensions allow you to add functionalities and modify the application’s user interface.
 
=== Jupyter Lmod === <!--T:12-->
 
<!--T:13-->
[https://github.com/cmd-ntrf/jupyter-lmod 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.
 
{{Commands2
|prompt=(jupyter_py3)_[name@server ~]$
|pip install jupyterlmod
|jupyter nbextension install --py jupyterlmod --sys-prefix
|jupyter nbextension enable --py jupyterlmod --sys-prefix
|jupyter serverextension enable --py jupyterlmod --sys-prefix
}}
=== Proxy web services === <!--T:14-->
 
<!--T:75-->
[https://github.com/jupyterhub/nbserverproxy nbserverproxy] enables users to reach arbitrary web services running within their spawned Jupyter server. This is useful to access web services that are listening only on a port of the localhost like [https://www.tensorflow.org/programmers_guide/summaries_and_tensorboard TensorBoard].
 
{{Commands2
|prompt=(jupyter_py3)_[name@server ~]$
|pip install nbserverproxy
|jupyter serverextension enable --py nbserverproxy --sys-prefix
}}
==== Example ==== <!--T:71-->
 
<!--T:72-->
In Jupyter, a user starts a web service via 'Terminal' in the ''New'' dropdown list:
 
<!--T:73-->
{{Command2
|tensorboard --port{{=}}8008
}}
 
<!--T:74-->
The service is proxied off of /proxy/ at https://address.of.notebook.server/user/theuser/proxy/8008.
 
=== RStudio Launcher === <!--T:15-->
 
<!--T:16-->
Jupyter Notebook can start an RStudio session that uses Jupyter Notebook's token authentication system. RStudio Launcher adds an ''RStudio Session'' option to the Jupyter Notebook ''New'' dropdown list.
 
<!--T:81-->
'''Note:''' the installation procedure below only works with the <code>StdEnv/2016.4</code> and <code>StdEnv/2018.3</code> software environments.


To access the notebook running on a compute node from your web browser, you will need to create a tunnel between the cluster and your computer since the compute nodes are not directly accessible from the Internet. To create that tunnel, we recommend the usage of the Python package [https://sshuttle.readthedocs.io sshuttle].
<!--T:17-->
{{Commands2
|prompt=(jupyter_py3)_[name@server ~]$
|pip install nbserverproxy
|pip install https://github.com/jupyterhub/nbrsessionproxy/archive/v0.8.0.zip
|jupyter serverextension enable --py nbserverproxy --sys-prefix
|jupyter nbextension install --py nbrsessionproxy --sys-prefix
|jupyter nbextension enable --py nbrsessionproxy --sys-prefix
|jupyter serverextension enable --py nbrsessionproxy --sys-prefix
}}


On your computer, open a new terminal window, and run the following sshuttle command to create the tunnel
== Activating the environment == <!--T:23-->


{{Command
<!--T:24-->
|prompt=[name@my_computer $]
Once you have installed Jupyter Notebook, you need only reload the Python module associated with your environment when you log into the cluster.
|sshuttle --dns -Nr userid@machine_name}}


== Load the module ==
<!--T:25-->
{{Command2|module load python/3.7}}


Log onto graham.sharcnet.ca (or graham.computecanada.ca) or cedar.computecanada.ca and load the python module
<!--T:26-->
Then, activate the virtual environment in which you have installed Jupyter Notebook.


ssh user@{graham|cedar}.computecanada.ca
<!--T:27-->
module load python35-scipy-stack
{{Command2|source $HOME/jupyter_py3/bin/activate}}


== Install Python modules ==
=== RStudio Server (optional) === <!--T:28-->


Refer to the [[Python]] documentation.
<!--T:29-->
To use [[#RStudio_Launcher | RStudio Launcher]], load the RStudio Server module.


== Submit the job ==
<!--T:30-->
{{Command2|prompt=(jupyter_py3)_[name@server ~]$
|module load rstudio-server}}


Create a bash script for submitting a Jupyter job on the slurm scheduler, i.e., slurm_jupyter.sh and add the following. Note do not forget to change the lines with <> since you need to choose your email (line 10) and your account (line 11).
== Starting Jupyter Notebook == <!--T:31-->


{{File
<!--T:32-->
  |name=slurm_jupyter.sh
To start the application, submit an interactive job. Adjust the parameters based on your needs. See [[Running jobs]] for more information.
  |lang="sh"
  |lines=yes
  |contents=
#!/bin/bash
#SBATCH --gres=gpu:1                      #number of GPUs if needed
#SBATCH --time=0-01:00                    #time in dd-hr:mm
#SBATCH --nodes 1                        #nodes
#SBATCH --ntasks-per-node 2              #cores per node
#SBATCH --mem-per-cpu 4000                #mem in MB
#SBATCH --job-name tunnel                #name of the job
#SBATCH --output jupyter-log-%J.txt      #output file
#SBATCH --mail-type=BEGIN                #send email when job begins
#SBATCH --mail-user=<email_to_notify>    #to this email address
#SBATCH --account=<account>              #account


#load cuda (remove if you don't need GPUs) and python modules
</translate>
module load cuda                         
{{Command2|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/notebook.sh
module load python35-scipy-stack
|result=
salloc: Granted job allocation 1422754
salloc: Waiting for resource configuration
salloc: Nodes cdr544 are ready for job
[I 14:07:08.661 NotebookApp] Serving notebooks from local directory: /home/fafor10
[I 14:07:08.662 NotebookApp] 0 active kernels
[I 14:07:08.662 NotebookApp] The Jupyter Notebook is running at:
[I 14:07:08.663 NotebookApp] http://cdr544.int.cedar.computecanada.ca:8888/?token=7ed7059fad64446f837567e32af8d20efa72e72476eb72ca
[I 14:07:08.663 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 14:07:08.669 NotebookApp]


## get tunneling info
Copy/paste this URL into your browser when you connect for the first time,
XDG_RUNTIME_DIR=""
    to login with a token:
#choose a random port
        http://cdr544.int.cedar.computecanada.ca:8888/?token=7ed7059fad64446f837567e3}}
ipnport=$(shuf -i8000-9999 -n1)
<translate>
#get hostname's IP and remove whitespaces
ipnip=$(hostname -i {{!}} xargs)


## print tunneling instructions to jupyter-log-{jobid}.txt
== Connecting to Jupyter Notebook == <!--T:18-->
echo -e "
    Copy/Paste this in your local terminal to ssh tunnel with remote
    -----------------------------------------------------------------
    sshuttle -r $USER@${CC_CLUSTER}.computecanada.ca -v $ipnip/24
    -----------------------------------------------------------------


    Then open a browser on your local machine to the following address
<!--T:20-->
    ------------------------------------------------------------------
To access Jupyter Notebook running on a compute node from your web browser, you will need to create an [[SSH tunnelling|SSH tunnel]] between the cluster and your computer since the compute nodes are not directly accessible from the Internet.
    http://$ipnip:$ipnport  (prefix w/ https:// if using password)
    ------------------------------------------------------------------
    "


## start an ipcluster instance and launch jupyter server
=== From Linux or MacOS X === <!--T:39-->
jupyter-notebook --no-browser --port=$ipnport --ip=$ipnip
}}


Submit the previous script
<!--T:40-->
On a Linux or MacOS X system, we recommend using the [https://sshuttle.readthedocs.io sshuttle] Python package.


sbatch slurm_jupyter.sh
<!--T:21-->
On your computer, open a new terminal window and run the following <code>sshuttle</code> command to create the tunnel.


== Example on Graham ==
<!--T:22-->
{{Command2
|prompt=[name@my_computer ~]$
|sshuttle --dns -Nr <username>@<cluster>.computecanada.ca}}


Once you submit the job, and this job has started, you can check the instructions in the log file jupyter-log-*.txt. For example, let's say that you submit a job with a JOBID 131620, then you will have a file jupyter-log-131620.txt which will have something like the following
<!--T:76-->
In the preceding command substitute <code><username></code> by your username; and substitute <code><cluster></code> by the cluster you connected to launch your Jupyter Notebook.


<!--T:35-->
Then, copy and paste the provided URL into your browser. In the above example, this would be
<pre>
<pre>
    Copy/Paste this in your local terminal to ssh tunnel with remote
http://cdr544.int.cedar.computecanada.ca:8888/?token=7ed7059fad64446f837567e3
    -----------------------------------------------------------------
</pre>
    sshuttle -r jnandez@graham.computecanada.ca -v 10.29.76.27/24
 
    -----------------------------------------------------------------
=== From Windows === <!--T:41-->
 
<!--T:42-->
An [[SSH tunnelling|SSH tunnel]] can be created from Windows using [[Connecting_with_MobaXTerm | MobaXTerm]] as follows.  This will also work from any Unix system (MacOS, Linux, etc).


    Then open a browser on your local machine to the following address
<!--T:43-->
    ------------------------------------------------------------------
<ol>
    http://10.29.76.27:9799  (prefix w/ https:// if using password)
<li>Open a new Terminal tab in MobaXTerm (Session 1) and connect to a cluster. Then follow the instructions in section [[#Starting_Jupyter_Notebook| Starting Jupyter Notebook]]. At this point, you should have on your screen an URL with the following form.
    ------------------------------------------------------------------
<pre>
   
http://cdr544.int.cedar.computecanada.ca:8888/?token=7ed7059fad64446f837567e3
[I 13:58:14.393 NotebookApp] Serving notebooks from local directory: /home/jnandez/jupyter_notebook_HPC
      └────────────────┬───────────────────┘        └──────────┬───────────┘
[I 13:58:14.394 NotebookApp] 0 active kernels
                  hostname:port                              token
[I 13:58:14.394 NotebookApp] The Jupyter Notebook is running at: http://10.29.76.27:9799/
</pre>
<li>Open a second Terminal tab in MobaXTerm (Session 2). In the following command, substitute <code><hostname:port></code> by its corresponding value from the URL you obtained in Session 1 (refer to the previous figure); substitute <code><username></code> by your username; and substitute <code><cluster></code> by the cluster you connected to in Session 1. Run the command.
{{Command2
|prompt=[name@my_computer ~]$
|ssh -L 8888:<hostname:port> <username>@<cluster>.computecanada.ca}}
<li> Open your browser and go to
<pre>
http://localhost:8888/?token=<token>
</pre>
</pre>
Replace <code><token></code> with its value from Session 1.
</ol>
== Shutting down Jupyter Notebook == <!--T:36-->
<!--T:37-->
You can shut down the Jupyter Notebook server before the walltime limit by pressing Ctrl-C twice in the terminal that launched the interactive job.
<!--T:49-->
If you used MobaXterm to create a tunnel, press Ctrl-D in Session 2 to shut down the tunnel.


=== Opening in a web browser ===
== Adding kernels == <!--T:54-->


Open your local browser and type,
<!--T:55-->
It is possible to add kernels for other programming languages or Python versions different than the one running the Jupyter Notebook. Refer to [http://jupyter-client.readthedocs.io/en/latest/kernels.html Making kernels for Jupyter] to learn more.


http://10.29.76.27:9799
<!--T:56-->
The installation of a new kernel is done in two steps.
#Installation of the packages that will allow the language interpreter to communicate with Jupyter Notebook.  
#Creation of a file that will indicate to Jupyter Notebook how to initiate a communication channel with the language interpreter. This file is called a ''kernel spec file''.


<!--T:57-->
Each kernel spec file has to be created in its own subfolder inside a folder in your home directory with the following path <code> ~/.local/share/jupyter/kernels</code>. Jupyter Notebook does not create this folder, so the first step in all cases is to create it. You can use the following command.
{{Command2|mkdir -p  ~/.local/share/jupyter/kernels}}


<!--T:58-->
In the following sections, we provide a few examples of the kernel installation procedure.


== Example on Cedar ==
=== Julia === <!--T:63-->


Once you submit the job, and this job has started, you can check the instructions in the log file jupyter-log-*.txt. For example, let's say that you submit a job with a JOBID 1418055, then you will have a file jupyter-log-1418055.txt which will have something like the following
<!--T:64-->
<ol>
<li>Load the [[Julia]] module. {{Command2|module load julia}}
<li>Activate the Jupyter Notebook virtual environment. {{Command2|source $HOME/jupyter_py3/bin/activate}}
<li>Install IJulia. {{Command2|prompt=(jupyter_py3)_[name@server ~]$|echo 'Pkg.add("IJulia")' {{!}} julia}}
</ol>


<pre>
<!--T:65-->
For more information, see the [https://github.com/JuliaLang/IJulia.jl IJulia documentation].


    Copy/Paste this in your local terminal to ssh tunnel with remote
=== Python === <!--T:77-->
    -----------------------------------------------------------------
    sshuttle -r jnandez@cedar.computecanada.ca -v 172.16.136.103/24
    -----------------------------------------------------------------


    Then open a browser on your local machine to the following address
<!--T:78-->
    ------------------------------------------------------------------
<ol>
    http://172.16.136.103:8975  (prefix w/ https:// if using password)
<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}}
[I 09:31:44.233 NotebookApp] Serving notebooks from local directory: /home/jnandez/jupyter_notebook_HPC
<li>Install the <code>ipykernel</code> library. {{Command2|prompt=(jupyter_py3.5)_[name@server ~]$|pip install ipykernel}}
[I 09:31:44.233 NotebookApp] 0 active kernels
<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"}}
[I 09:31:44.233 NotebookApp] The Jupyter Notebook is running at: http://172.16.136.103:8975/
<li>Deactivate the virtual environment. {{Command2|prompt=(jupyter_py3.5)_[name@server ~]$|deactivate}}
[I 09:31:44.233 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
</ol>
</pre>


=== Opening in a web browser ===
<!--T:79-->
For more information, see the [http://ipython.readthedocs.io/en/stable/install/kernel_install.html ipykernel documentation].


Open your local browser and type,
=== R === <!--T:66-->


http://172.16.136.103:8975
<!--T:67-->
<ol>
<li>Load the R module. {{Command2|module load r}}
<li>Activate the Jupyter Notebook virtual environment. {{Command2|source $HOME/jupyter_py3/bin/activate}}
<li>Install the R kernel dependencies. {{Command2|prompt=(jupyter_py3)_[name@server ~]$|R -e "install.packages(c('crayon', 'pbdZMQ', 'devtools'), repos{{=}}'http://cran.us.r-project.org')"}}
<li>Install the R kernel. {{Command2|prompt=(jupyter_py3)_[name@server ~]$|R -e "devtools::install_github(paste0('IRkernel/', c('repr', 'IRdisplay', 'IRkernel')))"}}
<li>Install the R kernel spec file. {{Command2|prompt=(jupyter_py3)_[name@server ~]$|R -e "IRkernel::installspec()"}}
</ol>


=References=
<!--T:68-->
For more information, see the [https://irkernel.github.io/docs/ IRKernel documentation].


* [http://ipyrad.readthedocs.io/HPC_Tunnel.html HPC Tunnel ]
== References == <!--T:69-->
</translate>

Latest revision as of 16:24, 23 October 2023

Other languages:


Advanced material

This page is for advanced users. Please see JupyterHub instead.



Introduction

"Project Jupyter is 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]

"The Jupyter Notebook is an open-source web application that allows you to create and share documents that contain live code, equations, visualizations and narrative text."[2]

You can run Jupyter Notebook on a compute node or on a login node (not recommended). Note that login nodes impose various user- and process-based limits, so applications running there may be killed if they consume too much CPU time or memory. To use a compute node you will have to submit a job requesting the number of CPUs (and optionally GPUs), the amount of memory, and the run time. Here, we give instructions to submit a Jupyter Notebook job.

Other information:

  • Since Jupyter Notebook is the older Jupyter interface, please consider installing JupyterLab instead.
  • If you are instead looking for a preconfigured Jupyter environment, please see the Jupyter page.

Installing Jupyter Notebook

These instructions install Jupyter Notebook with the pip command in a Python virtual environment in your home directory. The following instructions are for Python 3.6, but you can also install the application for a different version by loading a different Python module.

  1. Load the Python module.
    [name@server ~]$ module load python/3.7
    
  2. Create a new Python virtual environment.
    [name@server ~]$ virtualenv $HOME/jupyter_py3
    
  3. Activate your newly created Python virtual environment.
    [name@server ~]$ source $HOME/jupyter_py3/bin/activate
    
  4. Install Jupyter Notebook in your new virtual environment.
    (jupyter_py3) [name@server ~]$ pip install --no-index --upgrade pip
    (jupyter_py3) [name@server ~]$ pip install --no-index jupyter
    
  5. In the virtual environment, create a wrapper script that launches 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
    
  6. Finally, make the script executable.
    (jupyter_py3)_[name@server ~]$ chmod u+x $VIRTUAL_ENV/bin/notebook.sh
    

Installing extensions

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

Jupyter Lmod

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.

(jupyter_py3)_[name@server ~]$ pip install jupyterlmod
(jupyter_py3)_[name@server ~]$ jupyter nbextension install --py jupyterlmod --sys-prefix
(jupyter_py3)_[name@server ~]$ jupyter nbextension enable --py jupyterlmod --sys-prefix
(jupyter_py3)_[name@server ~]$ jupyter serverextension enable --py jupyterlmod --sys-prefix

Proxy web services

nbserverproxy enables users to reach arbitrary web services running within their spawned Jupyter server. This is useful to access web services that are listening only on a port of the localhost like TensorBoard.

(jupyter_py3)_[name@server ~]$ pip install nbserverproxy
(jupyter_py3)_[name@server ~]$ jupyter serverextension enable --py nbserverproxy --sys-prefix

Example

In Jupyter, a user starts a web service via 'Terminal' in the New dropdown list:

[name@server ~]$ tensorboard --port=8008


The service is proxied off of /proxy/ at https://address.of.notebook.server/user/theuser/proxy/8008.

RStudio Launcher

Jupyter Notebook can start an RStudio session that uses Jupyter Notebook's token authentication system. RStudio Launcher adds an RStudio Session option to the Jupyter Notebook New dropdown list.

Note: the installation procedure below only works with the StdEnv/2016.4 and StdEnv/2018.3 software environments.

(jupyter_py3)_[name@server ~]$ pip install nbserverproxy
(jupyter_py3)_[name@server ~]$ pip install https://github.com/jupyterhub/nbrsessionproxy/archive/v0.8.0.zip
(jupyter_py3)_[name@server ~]$ jupyter serverextension enable --py nbserverproxy --sys-prefix
(jupyter_py3)_[name@server ~]$ jupyter nbextension install --py nbrsessionproxy --sys-prefix
(jupyter_py3)_[name@server ~]$ jupyter nbextension enable --py nbrsessionproxy --sys-prefix
(jupyter_py3)_[name@server ~]$ jupyter serverextension enable --py nbrsessionproxy --sys-prefix


Activating the environment

Once you have installed Jupyter Notebook, you need only reload the Python module associated with your environment when you log into the cluster.

[name@server ~]$ module load python/3.7


Then, activate the virtual environment in which you have installed Jupyter Notebook.

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


RStudio Server (optional)

To use RStudio Launcher, load the RStudio Server module.

(jupyter_py3)_[name@server ~]$ module load rstudio-server


Starting Jupyter Notebook

To start the application, submit an interactive job. 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/notebook.sh
salloc: Granted job allocation 1422754
salloc: Waiting for resource configuration
salloc: Nodes cdr544 are ready for job
[I 14:07:08.661 NotebookApp] Serving notebooks from local directory: /home/fafor10
[I 14:07:08.662 NotebookApp] 0 active kernels
[I 14:07:08.662 NotebookApp] The Jupyter Notebook is running at:
[I 14:07:08.663 NotebookApp] http://cdr544.int.cedar.computecanada.ca:8888/?token=7ed7059fad64446f837567e32af8d20efa72e72476eb72ca
[I 14:07:08.663 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 14:07:08.669 NotebookApp]

Copy/paste this URL into your browser when you connect for the first time,
    to login with a token:
        http://cdr544.int.cedar.computecanada.ca:8888/?token=7ed7059fad64446f837567e3


Connecting to Jupyter Notebook

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

From Linux or MacOS X

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

On your computer, open a new terminal window and run the following sshuttle command to create the tunnel.

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


In the preceding command substitute <username> by your username; and substitute <cluster> by the cluster you connected to launch your Jupyter Notebook.

Then, copy and paste the provided URL into your browser. In the above example, this would be

 http://cdr544.int.cedar.computecanada.ca:8888/?token=7ed7059fad64446f837567e3

From Windows

An SSH tunnel can be created from Windows using MobaXTerm as follows. This will also work from any Unix system (MacOS, Linux, etc).

  1. Open a new Terminal tab in MobaXTerm (Session 1) and connect to a cluster. Then follow the instructions in section Starting Jupyter Notebook. At this point, you should have on your screen an URL with the following form.
    http://cdr544.int.cedar.computecanada.ca:8888/?token=7ed7059fad64446f837567e3
           └────────────────┬───────────────────┘        └──────────┬───────────┘
                      hostname:port                               token
    
  2. Open a second Terminal tab in MobaXTerm (Session 2). In the following command, substitute <hostname:port> by its corresponding value from the URL you obtained in Session 1 (refer to the previous figure); substitute <username> by your username; and substitute <cluster> by the cluster you connected to in Session 1. Run the command.
    [name@my_computer ~]$ ssh -L 8888:<hostname:port> <username>@<cluster>.computecanada.ca
    
  3. Open your browser and go to
     http://localhost:8888/?token=<token>
    

    Replace <token> with its value from Session 1.

Shutting down Jupyter Notebook

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

If you used MobaXterm to create a tunnel, press Ctrl-D in Session 2 to shut down the tunnel.

Adding kernels

It is possible to add kernels for other programming languages or Python versions different than the one running the Jupyter Notebook. 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 Jupyter Notebook.
  2. Creation of a file that will indicate to Jupyter Notebook how to initiate a communication channel with the language interpreter. This file is called a kernel spec file.

Each kernel spec file has to be created in its own subfolder inside a folder in your home directory with the following path ~/.local/share/jupyter/kernels. Jupyter Notebook does not create this folder, so the first step in all cases is to create it. You can use the following command.

[name@server ~]$ mkdir -p  ~/.local/share/jupyter/kernels


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

Julia

  1. Load the Julia module.
    [name@server ~]$ module load julia
    
  2. Activate the Jupyter Notebook virtual environment.
    [name@server ~]$ source $HOME/jupyter_py3/bin/activate
    
  3. Install IJulia.
    (jupyter_py3)_[name@server ~]$ echo 'Pkg.add("IJulia")' | julia
    

For more information, see the IJulia documentation.

Python

  1. Load the Python module.
    [name@server ~]$ module load python/3.5
    
  2. Create a new Python virtual environment.
    [name@server ~]$ virtualenv $HOME/jupyter_py3.5
    
  3. Activate your newly created Python virtual environment.
    [name@server ~]$ source $HOME/jupyter_py3.5/bin/activate
    
  4. Install the ipykernel library.
    (jupyter_py3.5)_[name@server ~]$ pip install ipykernel
    
  5. Generate the kernel spec file. Substitute <unique_name> by a name that will uniquely identify your kernel.
    (jupyter_py3.5)_[name@server ~]$ python -m ipykernel install --user --name <unique_name> --display-name "Python 3.5 Kernel"
    
  6. Deactivate the virtual environment.
    (jupyter_py3.5)_[name@server ~]$ deactivate
    

For more information, see the ipykernel documentation.

R

  1. Load the R module.
    [name@server ~]$ module load r
    
  2. Activate the Jupyter Notebook virtual environment.
    [name@server ~]$ source $HOME/jupyter_py3/bin/activate
    
  3. Install the R kernel dependencies.
    (jupyter_py3)_[name@server ~]$ R -e "install.packages(c('crayon', 'pbdZMQ', 'devtools'), repos='http://cran.us.r-project.org')"
    
  4. Install the R kernel.
    (jupyter_py3)_[name@server ~]$ R -e "devtools::install_github(paste0('IRkernel/', c('repr', 'IRdisplay', 'IRkernel')))"
    
  5. Install the R kernel spec file.
    (jupyter_py3)_[name@server ~]$ R -e "IRkernel::installspec()"
    

For more information, see the IRKernel documentation.

References