Jupyter Notebook(此前被称为 IPython notebook)是一个交互式笔记本

启动方法(可带参数)

jupyter notebook 
jupyter notebook --no-browser
jupyter notebook --port 9999
jupyter notebook --help
jupyter notebook --ip=0.0.0.0 #外部访问

配置服务器对外密码

1. 生成配置文件

在服务器上执行:jupyter notebook –generate-config 记录下生成的配置文件位置,例如:/root/.jupyter/jupyter_notebook_config.py

2. 生成hash

打开jupyter,新建一个notebook,生成密码的sha1秘钥。 生成HASH 代码如下:

from notebook.auth import passwd
passwd()
3. 将hash写入配置文件

将上图Out[1]: 后面’ ‘中的配置添加到文件**jupyter_notebook_config.py**末尾 格式为: c.NotebookApp.password = u'sha1:XXXXXXX' 重启jupyter,重新打开网页即可