欢迎关注大数据和人工智能技术文章发布的微信公众号:清研学堂,在这里你可以学到夜白(作者笔名)精心整理的笔记,让我们每天进步一点点,让优秀成为一种习惯!
1、使用pip安装Jupyter notebook:
pip install jupyter notebook
2、创建Jupyter默认配置文件:
jupyter notebook --generate-config
3、输入ipython,进入对话框:
ipython
4、导入密码模块,设置密码,最后生成SHA1加密的密钥,保存密钥,如'sha1:XXXXXX':
from notebook.auth
import
passwd
passwd
()
5、修改配置文件,设置密钥:;
cd ~
vim .jupyter/jupyter_notebook_config.py
6、在文件末尾增加:
c.NotebookApp.password = u
'sha1:XXXXXX'
7、运行jupyter notebook:
jupyter notebook --ip=0.0.0.0 --no-browser --allow-root