Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Install your own version of python to run jupyter.
  2. Install jupyter
  3. Start up jupyter
    1. Be sure you are logged into login.cluster.tufts.edu
    2. Code Block
      languagebash
      titleGet an allocation on a compute node. Write down the name of the assigned compute node
      srun --pty --x11=first -p interactive bash


       

    3. Start jupyter on the compute node. It will display the port # the software is running on, usually 8888 jupyter notebook --no-browser
  4. Access jupyter
    1. Code Block
      languagebash
      titleNow setup forwarding from your workstation thru the headnode to the assigned compute node, in this example it is alpha001
      ssh sdough01@login.cluster.tufts.edu -L 8888:localhost:8888 ssh alpha001 -L 8888:localhost:8888



    2. Point the browser on your workstation to http://localhost:8888/    and the jupyter web interface should come up.
    3. Do computation, do science!

...