1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/jupyter.md
Managor 8e09a08059
common*: refresh old pages part 3 (#16257)
Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com>
2025-04-25 21:19:03 +03:00

33 lines
812 B
Markdown

# jupyter
> Web application to create and share documents that contain code, visualizations and notes.
> Primarily used for data analysis, scientific computing and machine learning.
> More information: <https://docs.jupyter.org/en/latest/>.
- Start a Jupyter notebook server in the current directory:
`jupyter notebook`
- Open a specific Jupyter notebook:
`jupyter notebook {{example.ipynb}}`
- Export a specific Jupyter notebook into another format:
`jupyter nbconvert --to {{html|markdown|pdf|script}} {{example.ipynb}}`
- 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`
- Start JupyterLab, if installed, in the current directory:
`jupyter lab`