jupyter Notebook的使用(一)

关于Jupyter Notebook的使用

1. 启动Jupyter Notebook

打开anaconda prompt,在命令符提示行输入

jupyter notebook

2.常用命令

如何打开一个具体的notebook

jupyter notebook notebook.ipynb

如何改变端口

jupyter notebook --port 9999

默认端口是8888
不以浏览器的方式打开jupyter

jupyter notebook --no-browser

获取帮助

jupyter notebook --help

查看所有帮助

扫描二维码关注公众号,回复: 3857071 查看本文章

jupyter notebook --help-all

设置密码

jupyter notebook password

3.关闭jupyter notebook

关闭 jupyter notebook

Ctrl + C

猜你喜欢

转载自blog.csdn.net/anzhou7262/article/details/83151948