Skip to main content

Connecting to MONTAGE via JupyterLab

  1. SSH to MONTAGE.
  2. Lets open a screen.
    screen -ls       # Just checking if we have existing screens?
    screen -S jupy # I am creating a new screen named 'jupy'
    • Great! You are in a screen. That way, your processes can still run in the background, even if you close the terminal window.
  3. Open jupyter lab.
    jupyter lab
  4. Take note of the port number.
  1. Exit the screen. Click Ctrl-A, then click D, to exit the screen.
  2. Your jupyter lab session is now running in background.
  3. Open your favourite internet browser. Go to:
    https://10.168.151.1:[port-number]
  4. You are now in! Create-your-HPC-ID-account_1
tip

I like JupyterLab, but if you prefer Jupyter Notebook, you can do that too. Just type jupyter notebook instead.