To use, clone the repo, then enter in the terminal:
vagrant up
vagrant ssh
Once logged in, enter:
ipython
This will start the ipython notebook server on the VM. To access it from your web browser, open a second terminal and set up an ssh tunnel between your machine and the VM:
ssh -N -f -l localhost:7777:localhost:7777 [email protected]
Then log in using the tunnel:
ssh -L 7777:localhost:7777 [email protected]
Use the password vagrant
. Now open up a web browser on your machine and navigate
to localhost:7777. Create a notebook and begin using
IPython.