ubuntu14.04安装jupyter notebook

欢迎关注大数据和人工智能技术文章发布的微信公众号:清研学堂,在这里你可以学到夜白(作者笔名)精心整理的笔记,让我们每天进步一点点,让优秀成为一种习惯!

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
 
 
上一篇:windows下Qt5.1-android开发环境配置


下一篇:集群通信组件tribes之集群的消息接收通道