Skip to content

Jupyter notebook

Install directions for jupyter assume you have a working Conda install.

  1. conda create -n jupyter python=3
  2. conda activate jupyter
  3. conda install -c conda-forge jupyterlab

Example workflow

This is an example work flow to access a jupyter notebook from the browser of your computer.

Request a node be allocated

salloc -N 1 --gres=gpu:1 -t 15

See which node was allocated

squeue

SSH to the node and start jupyter notebook

ssh dcs###
conda activate jupyter
jupyter notebook --no-browser --ip=0.0.0.0

Connect a new SSH session from your client with a port forward to the allocated node

ssh -L 8888:dcs###:8888 CCIuser@blp01.ccni.rpi.edu

In your client web browser navigate to http://127.0.0.1:8888/?token=#########################################