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 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](https://denigma.io/media/png/7d457d0fe0725c184915e51694066008.png)