【python】jupyter notebook安装及取消登录密码

1、安装 jupyter notebook

pip install jupyter notebook

备注:安装慢的改下pip的源为国内的源

2、打开Jupyter界面

cmd输入 jupyter notebook 命令就会弹出一个页面
先upload这个.ipynb后缀的文件就可以打开。

3、取消Jupyter 登录密码

3.1

终端输入:jupyter notebook --generate-config 会生成一个配置文件,成功后会显示文件路径(C:\Users\Administrator.jupyter\jupyter_notebook_config.py)

3.2

打开路径下的jupyter_notebook_config.py配置文件,找到:

# c.NotebookApp.token = ''

取消掉注释,并且把其取值设为空:

 c.NotebookApp.token = ' '

重新打开就不要输入密码直接进入到notebook了

【python】jupyter notebook安装及取消登录密码_第1张图片

你可能感兴趣的:(python)