jupyter 如何设置密码

打开python命令行,输入

from notebook.auth import passwd
passwd()

以密码”123”为例,输出结果得到如下

'sha1:da00fa1e950a:0adb64c8359ef97932e5dde02d6167e140bac4e0'

然后把上面的sha写入到配置文件”jupyter_notebook_config.py”, 这个文件一般需要使用命令生成

完整的一条配置命令如下:

c.NotebookApp.password = 'sha1:da00fa1e950a:0adb64c8359ef97932e5dde02d6167e140bac4e0'

上面这条配置命令可以放在配置文件任意位置