Jupyter Notebook

The Jupter Notebook (formerely known as the IPython Notebook) is an interactive computational environment, which combines code execution, rich text, mathematics, plots and rich media.

A Jupter Notebook can be launched just with::

ipython notebook

In order to start a Jupyter Notebook so that it can be access remotely from other computers within a network use the following way::

ipython notebook --ip='0.0.0.0' --NotebookApp.token=''

This will launch in a way to accept request from other computers and will not require to specify a security token. However use the following command with caution only in private networks where you trusts all other connected devices.

Jupyter Notebooks logo