There are a wide range of tools that build on top of the Jupyter notebook.
In [1]:
%load_ext load_style
%load_style images.css
from IPython.display import display, Image, HTML
The nbconvert package is a command line tool for running notebooks and converting them to other formats:
The nbviewer website provides statically rendered HTML versions of any notebook on the internet or GitHub.
In [2]:
Image("images/nbviewer1.png", width="80%")
Out[2]:
The binder project enables Github hosted notebooks to be run by anyone on the internet.
In [3]:
Image("images/mybinder.png", width="80%")
Out[3]:
Here are some notable examples:
The tmpnb project provides live, transient notebooks in the cloud.
JupyterHub provides persistent, centralized notebooks for organizations:
http://jupyterhub-deploy-teaching.readthedocs.org/en/latest/
In [4]:
Image("images/jupyterhub-admin.png", width="80%")
Out[4]: