Jupyter Resources
One of the simplest and most versatile ways to use python is through Jupyter Lab. In order to get it working within your virtual environment, follow these steps:
Installation
- Follow the earlier steps to SSH into one of the servers.
- Activate your virtual environment
- Run the following commands:
- If you created an empty environment, use the following command
first:
conda install jupyterlab -y
jupyter lab --no-browser --port 9XXX --notebook-dir=/
- Replace
9XXX
with the number used for the SSH port forwarding- e.g.
jupyter lab --no-browser --port 9032 --notebook-dir=
- e.g.
- Replace
- Copy and paste the URL in the terminal into a web browser
- e.g.
http://localhost:9032/?token=XXXXXXXXXXXXXXX
- e.g.
- If you created an empty environment, use the following command
first: