mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
20 lines
368 B
Markdown
20 lines
368 B
Markdown
![]() |
# jupyter
|
||
|
|
||
|
> Web application for scientific computing and reproducible research.
|
||
|
|
||
|
- Start a Jupyter notebook server in the current directory:
|
||
|
|
||
|
`jupyter notebook`
|
||
|
|
||
|
- 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`
|