====== Jupyter ======
===== SSH tunneling =====
Create a notebook instance in the background of a server, and copy the url of the notebook.
On the server:
- Open a new screen: ''screen''
- Type jupyter lab --no-browser --port=xxxx
(e. g. 8889) on the new screen.
- Detach from the screen: ''ctrl + a + d''
On your local machine:
- Tunnel to the jupyter lab on the server: ''ssh -N -f -L localhost:xxxx:localhost:xxxx user@server.edu''
- On a browser, open ''http://localhost:8889/lab''
===== Kernel =====
python -m ipykernel install --user --name=beam