-
Notifications
You must be signed in to change notification settings - Fork 2
Home
Let's keep this wiki as an place where we can keep track of what is discussed each week.
This assumes that you have Anaconda Python installed on both a local machine and a remote machine.
Jupyter notebooks can be created, and edited on a local machine, but stored and run on a remote machine. To connect your local browser (where a remote notebook will be edited), use the following commands:
-
Log into the remote machine and issue the following command at the bash command prompt:
(remote) $ jupyter notebook --no-browser --port=8100 # or any available port
-
On the local machine, you will issue the command :
(local) $ ssh -N -f -L 127.0.0.1:8100:127.0.0.1:8100 [email protected]
where domain
should be replaced with the correct domain name, 8100
is replaced with your port number,
and donnacalhoun
is replaced with your user name.
-
In local browser, navigate to the URL
(local) $ http://127.0.0.1:8100/
again, replacing the port number with your port value.
Voila! You are now running a remote copy of a jupyter notebook. Anything you save will be saved on the remote machine.