Linux command
jupyter 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
Start notebook server
jupyter notebook
Start JupyterLab
jupyter lab
Start on specific port
jupyter notebook --port [8888]
List running servers
jupyter notebook list
Stop server
jupyter notebook stop [8888]
Convert notebook
jupyter nbconvert --to [html|pdf|py] [notebook.ipynb]
说明
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.
参数
- 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.
FAQ
What is the jupyter command used for?
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.
How do I run a basic jupyter example?
Run `jupyter notebook` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does notebook do in jupyter?
Classic notebook interface.