Skip to content

Jupyter notebook #
Find similar titles

IPython

Problems #

Tips #

On a remote machine:

remote_user@remote_host$ jupyter notebook --no-browser --port=8889

then connect like this (remove -f option to prevent it to run in the background):

local_user@local_host$ ssh -N -f -L localhost:8888:localhost:8889 remote_user@remote_host

Open a browser:

localhost:8888

Type the following to reload modules whenever you execute code.

%load_ext autoreload  
%autoreload 2   # Reload all modules (except those excluded by %aimport) every time

Examples #

Incoming Links #

Related Articles #

Suggested Pages #

0.0.1_20140628_0