zwk-coder

试想你访问 Jupyter Notebook ,突然忘记了访问密码,该怎么做。经实践,只需利用命令行重新设置下密码即可。

## step 1:终端输入
jupyter notebook --generate -config
## step 2:终端输入
jupyter notebook password    # 按提示,输入密码
## step 3:创建sh文件,文件全名为start-pythonNotebook.sh,文件内容如下:
jupyter notebook --no-browser --ip=0.0.0.0 --port=5002
## step 4:终端输入
chmod +x ./start-pythonNotebook.sh

reference:
Jupyter Notebook之web访问密码设定

分类:

技术点:

相关文章:

  • 2021-10-31
  • 2021-09-24
  • 2021-07-01
  • 2021-09-13
  • 2022-01-23
猜你喜欢
  • 2021-09-16
  • 2022-12-23
  • 2021-08-16
  • 2021-04-30
  • 2022-01-01
  • 2021-08-11
  • 2021-10-21
相关资源
相似解决方案