Python-第三方库-Jupyter
Contents
安装jupyter
|
|
常用命令
|
|
找回jupyter密码
|
|
修改NotebookApp.allow_password_change=False
jupyter notebook password输入新密码两次
jupyter_notebook_config.json中生成password的值
将password的值拷贝给jupyter_notebook_config.py中的c.NotebookApp.password
那么后面登录就能使用你之前输入的新密码了
设置免密登录
设置token:~/.jupyter/jupyter_notebook_config.py
设置c.NotebookApp.token='xxx'
。然后重启jupyter服务后通过http://localhost:8888/?token=xxx
就可以登录jupyter服务器了
此方法通常用于与vscode集成,vscode连接jupyter只能通过token的方式