|
|
TOC:
|
|
|
|
|
|
[[_TOC_]]
|
|
|
|
|
|
# Introductory information to Jupyter Notebooks
|
|
|
For information of Jupyter Notebooks see:
|
|
|
* https://jupyter.org/
|
|
|
|
|
|
There are two frontends to execute jupyter notebooks (see Project Jupyter | Home):
|
|
|
|
|
|
- [Jupyter Notebook](https://jupyter-notebook.readthedocs.io/en/stable/notebook.html)
|
|
|
- [JupyterLab](https://jupyterlab.readthedocs.io/en/stable/)
|
|
|
|
|
|
# Start jupyter server and Firefox client with one command
|
|
|
|
|
|
This is the fastest way to startup using Jupyter Notebooks.
|
|
|
On the machine where you want to run server and client, cd to the root folder for your notebooks and issue the command
|
|
|
```
|
|
|
eltdev: > jupyter-notebook
|
|
|
|
|
|
or:
|
|
|
|
|
|
eltdev: > jupyter-lab
|
|
|
|
|
|
```
|
|
|
This will first start the jupyter-server and the an instance of Firefox with the entry page of the server.
|
|
|
|
... | ... | @@ -17,6 +31,10 @@ You can instead just start the jupyter server on the machine where you want you |
|
|
|
|
|
On the machine where you want to run the server, cd to the root folder for your notebooks and issue the command
|
|
|
```
|
|
|
eltdev: > jupyter-notebook --no-browser --ip=0.0.0.0
|
|
|
|
|
|
or
|
|
|
|
|
|
eltdev: > jupyter-lab --no-browser --ip=0.0.0.0
|
|
|
```
|
|
|
This start just the jupyter-server.
|
... | ... | |