码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu14.04安装jupyter notebook

时间:2018-03-29 10:24:46      阅读:326      评论:0      收藏:0      [点我收藏+]

标签:install   导入   文章   pip   alt   pytho   增加   ash   plain   

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

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
 
 

ubuntu14.04安装jupyter notebook

标签:install   导入   文章   pip   alt   pytho   增加   ash   plain   

原文地址:https://www.cnblogs.com/lijinze-tsinghua/p/8667739.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!