Table of Contents

Jupyter

SSH tunneling

Create a notebook instance in the background of a server, and copy the url of the notebook.

On the server:

  1. Open a new screen: screen
  2. Type
    jupyter lab --no-browser --port=xxxx

    (e. g. 8889) on the new screen.

  3. Detach from the screen: ctrl + a + d

On your local machine:

  1. Tunnel to the jupyter lab on the server: ssh -N -f -L localhost:xxxx:localhost:xxxx user@server.edu
  2. On a browser, open http://localhost:8889/lab

Kernel

python -m ipykernel install --user --name=beam