JupyterHub on Pegasus User Menu
Introduction
JupyterHub provides Jupyter Notebook for multiple users.
Through JupyterHub on Pegasus, you can request and start a Jupyter Notebook server on one of Pegasus’s compute nodes. In this way, you can interactively test your Python or R programs through the Notebook with the supercomputer resources.
Currently all requested Notebook servers are running in only two compute nodes. It is recommended to use the Notebook as a testing tool and submit formal jobs via LSF.
Using JupyterHub on Pegasus
Login
First you need to have access to Pegasus. Please check the IDSC ACS Policies
Connect with the UM network on campus or via VPN.
Open the Login page http://pegasus.ccs.miami.edu:8000 on your browser.
Log in using your UM CaneID and Pegasus password.
Starting your Jupyter Notebook server
Press the
Start My Notebook Server
button to launch the resource request page.Choose the memory, number of CPU cores, time you want to run the Notebook server and your associated project.
Press the
Request
button to request and start a Notebook server. This will take roughly 15 seconds.
Logout
When using the JupyterHub, you need to be clear that there are three things you need to turn off:
Close Notebook File - After saving, press
File
in the menu bar and chooseClose and Halt
.Stop Notebook Server - Click the
Control Panel
button at the top-right corner and pressStop My Notebook Server
.Logout from JupyterHub - Click the
Logout from JupyterHub
button at the top-right corner.
Warning
If you only logout from JupyterHub without stopping the Notebook Server first, the Notebook Server will run until the time you set up when starting it. This could result in unintended increased SU usage.
Using Jupyter Notebook
After the notebook server starts, you will see the interface page showing your home directory.
You can create notebook files, text files and folders, or open terminals
using the New
button at the top-right corner under the menu bar.
Details can be found at the official Jupyter Notebook User Documentation.
Creating Your Python Kernel
$
ssh <caneid>@pegasus.ccs.miami.edu
to login to Triton$
module load anaconda3
$
conda create -n <your environment> python=<version> <package1> <package2> ...
$
conda activate <your environment>
(your environment)$
conda install ipykernel
(your environment)$
ipython kernel install --user --name <kernel name> --display-name "<the displayed name for the kernel>"
Here is an example:
(Please press y
on your keyboard when you see Proceed ([y]/n)?
)
$ module load anaconda3
$ conda create -n myenv python=3.7 numpy scipy
$ conda activate myenv
(myenv)$ conda install ipykernel
(myenv)$ ipython kernel install --user --name my_py37_kernel --display-name "My Python 3.7 with NumPy and SciPy"
Later on, you can still install new packages to the kernel using conda install <package>
after activating the environment.
If you run into the following error: ImportError: cannot import name ‘secure_write’ from ‘jupyter_core.paths’ (/nethome/nalbe007/.conda/envs/newtest/lib/python3.7/site-packages/jupyter_core/paths.py)
You will need to pip install jupyter_client upgrade like so:
(myenv)$ pip install --upgrade jupyter_client
Then try installing your python kernel once more.
Note
If the package could not be found, you can search Anaconda
Cloud and choose Platform x64_64
If Anaconda Cloud does not have the package neither, you could try pip install
Warning
Issues may arise when using pip and conda together. Only after conda has been used to install as many packages as possible should pip be used to install any remaining software. If modifications are needed to the environment, it is best to create a new environment rather than running conda after pip.
After a package is installed, you can use it in your notebook by running import <package name>
in a cell.
R Kernels
We currently support a global R kernel named “R” for all users. Personal R kernels are coming soon. If you require a specific R package installed into the R kernel, please contact an admin at hpc@ccs.miami.edu
Removing Personal Kernels
You can view a list of all your kernels at the following path:
/nethome/<your_caneid>/.local/share/jupyter/kernels
From this directory you can delete kernels using Linux rm kernel_name command.
Using Pre-installed Kernels
Several kernels have been pre-installed on Pegasus. You can use them to test your code if you do not need
additional packages. On the Notebook Dashboard page, you can create a
new notebook file (.ipynb) with a selected kernel by clicking on the
New
button at the top-right corner under the menu bar. On the
Notebook Editor page, you can change kernel by clicking Kernel
in
the menubar and choosing Change kernel
.
Switching to JupyterLab
After the Jupyter Notebook server starts, you can switch to JupyterLab by changing the url from .../tree
to .../lab
. If you want to stop the server from JupyterLab, choose File
>> Hub Control Panel
in the menu bar, then press Stop My Notebook Server
button in the panel.