LinuxCommandLibrary

jupyter

provides interactive computing environments

TLDR

Start notebook server

$ jupyter notebook
copy
Start JupyterLab
$ jupyter lab
copy
Start on specific port
$ jupyter notebook --port [8888]
copy
List running servers
$ jupyter notebook list
copy
Stop server
$ jupyter notebook stop [8888]
copy
Convert notebook
$ jupyter nbconvert --to [html|pdf|py] [notebook.ipynb]
copy

SYNOPSIS

jupyter command [options]

DESCRIPTION

Jupyter provides interactive computing environments. It runs notebook servers for code execution and documentation.
The platform supports multiple languages through kernels. Notebooks combine code, output, and markdown.

PARAMETERS

notebook

Classic notebook interface.
lab
JupyterLab interface.
nbconvert
Convert notebooks.
--port PORT
Server port.
--no-browser
Don't open browser.
--ip IP
Server IP address.
--help
Display help information.

CAVEATS

Python-based. Browser required. Security considerations for remote access.

HISTORY

Jupyter was spun off from IPython in 2014, expanding to support multiple languages (Julia, Python, R - hence Ju-Pyt-eR).

SEE ALSO

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community