Contents

Python-第三方库-Jupyter

PYPI官网

jupyter官网

安装jupyter

jupyter官网下载说明

1
2
3
pip install notebook
# 启动jupyter服务
jupyter notebook

常用命令

1
2
3
4
5
6
# 列出本地jupyter服务器
jupyter notebook list
# 停止本地jupyter服务器
jupyter notebook stop
# 修改或设置密码
jupyter notebook password

找回jupyter密码

CSDN SU_ZCS

1
2
jupyter notebook --generate-config
vim ~/.jupyter/jupyter_notebook_config.py

修改NotebookApp.allow_password_change=False

jupyter notebook password输入新密码两次

jupyter_notebook_config.json中生成password的值

将password的值拷贝给jupyter_notebook_config.py中的c.NotebookApp.password

那么后面登录就能使用你之前输入的新密码了

设置免密登录

secular_

设置token:~/.jupyter/jupyter_notebook_config.py设置c.NotebookApp.token='xxx'。然后重启jupyter服务后通过http://localhost:8888/?token=xxx就可以登录jupyter服务器了

此方法通常用于与vscode集成,vscode连接jupyter只能通过token的方式

 |