2018-01-04 23:35:32 +00:00
|
|
|
# jupyter
|
|
|
|
|
2018-01-16 20:20:11 +00:00
|
|
|
> Web application to create and share documents that contain code, visualizations and notes.
|
|
|
|
> Primarily used for data analysis, scientific computing and machine learning.
|
2019-06-05 08:55:44 +01:00
|
|
|
> More information: <https://jupyter.org>.
|
2018-01-04 23:35:32 +00:00
|
|
|
|
|
|
|
- Start a Jupyter notebook server in the current directory:
|
|
|
|
|
|
|
|
`jupyter notebook`
|
|
|
|
|
2018-01-16 20:20:11 +00:00
|
|
|
- Open a specific Jupyter notebook:
|
|
|
|
|
|
|
|
`jupyter notebook {{example.ipynb}}`
|
|
|
|
|
2018-01-04 23:35:32 +00:00
|
|
|
- Start a server on a specific port:
|
|
|
|
|
|
|
|
`jupyter notebook --port={{port}}`
|
|
|
|
|
|
|
|
- List currently running notebook servers:
|
|
|
|
|
|
|
|
`jupyter notebook list`
|
|
|
|
|
|
|
|
- Stop the currently running server:
|
|
|
|
|
|
|
|
`jupyter notebook stop`
|
2018-09-11 08:10:47 +01:00
|
|
|
|
|
|
|
- Start JupyterLab, if installed, in the current directory:
|
|
|
|
|
|
|
|
`jupyter lab`
|