snippetbashTip
jupyter — Web application to create and share documents that contain code, visualizations, and notes. Primaril
Viewed 0 times
createcommandandshareclijupyterwebapplication
Problem
How to use the
jupyter command: 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/use/jupyter-command.html>.Solution
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/use/jupyter-command.html>.Start a Jupyter notebook server in the current directory:
jupyter notebookOpen a specific Jupyter notebook:
jupyter notebook {{path/to/file}}.ipynbExport a specific Jupyter notebook into another format:
jupyter nbconvert --to {{html|markdown|pdf|script|...}} {{path/to/file}}.ipynbStart a server on a specific port:
jupyter notebook --port {{port}}List currently running notebook servers:
jupyter notebook listStop the currently running server:
jupyter notebook stopStart JupyterLab, if installed, in the current directory:
jupyter labCode Snippets
Start a Jupyter notebook server in the current directory
jupyter notebookOpen a specific Jupyter notebook
jupyter notebook {{path/to/file}}.ipynbExport a specific Jupyter notebook into another format
jupyter nbconvert --to {{html|markdown|pdf|script|...}} {{path/to/file}}.ipynbStart a server on a specific port
jupyter notebook --port {{port}}List currently running notebook servers
jupyter notebook listContext
tldr-pages: common/jupyter
Revisions (0)
No revisions yet.