Jupyter Notebook ================ Starting a Jupyter Session -------------------------- Log into the server: .. code-block:: bash ssh username@server.example.edu Activate your environment: .. code-block:: bash source ~/venvs/myenv/bin/activate Start Jupyter: .. code-block:: bash jupyter lab --no-browser --port=8888 You should see output similar to: .. code-block:: text http://localhost:8888/lab?token=... SSH Port Forwarding ------------------- From your local computer: .. code-block:: bash ssh -L 8888:localhost:8888 username@server.example.edu Open the browser: .. code-block:: text http://localhost:8888 Stopping Jupyter ---------------- Press: .. code-block:: text Ctrl+C and confirm termination. Useful Commands --------------- List running notebooks: .. code-block:: bash jupyter server list Check running processes: .. code-block:: bash ps aux | grep jupyter