Skip to content

How to Run Jupyter on Linux VMs in HiPerGator-RVΒΆ

Using the following steps, your Linux VM in HiPerGator-RV 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
  1. Open a terminal and make the file executable: chmod +x ~/Desktop/launch_jupyter.sh
  2. Double click on the file...it should open Jupyter lab and have the HiPerGator kernels ready to go!