How to Run Jupyter on Linux VMs in ResVaultΒΆ
Using the following steps, your Linux VM in ResVault can have the same Jupyter kernels that are available on HiPerGator.
1. Copy and paste this code into a file your Linux Desktop folder (or
your computer and upload the file). Save it as launch_jupyter.sh
:
#!/bin/bash
# This script launches Jupyter in a Linux VM
module load jupyter/6.2.0
export JUPYTER_PATH=/apps/jupyterhub
jupyter lab
2. Open a terminal and make the file executable:
chmod +x ~/Desktop/launch_jupyter.sh
3. Double click on the file...it should open Jupyter lab and have the HiPerGator kernels ready to go!