欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Linux下安装jupyter

程序员文章站 2023-11-02 13:16:40
又是美好的一天 开开心心写代码 1. 安装ipython, jupyter pip install ipython pip install jupyter 2. 生成配置文件[root@50eb5057baac /]# jupyter notebook --generate-config Writi ......

又是美好的一天     开开心心写代码

 

1. 安装ipython, jupyter
pip install ipython pip install jupyter

 

2. 生成配置文件
[root@50eb5057baac /]# jupyter notebook --generate-config
writing default config to: /root/.jupyter/jupyter_notebook_config.py

Linux下安装jupyter

 

3. 生成密码
root@50eb5057baac /]# ipython
type 'copyright', 'credits' or 'license' for more information ipython 6.2.1 -- an enhanced interactive python. type '?' for help.
in [1]: from notebook.auth import passwd
in [2]: passwd()
enter password:
verify password:
out[2]: 'sha1:43b95b731276:5d330ee6f6054613b3ab4cc59c5048ff7c70f549'
in [3]: 到此 exit登出,继续往下运行

Linux下安装jupyter

 

 4. 修改默认配置文件

 执行命令:vim /root/.jupyter/jupyter_notebook_config.py

修改以下内容并去掉前面的注释 #:

c.notebookapp.ip='*' #设置访问notebook的ip,*表示所有ip,这里设置ip为都可访问
c.notebookapp.password=u'sha1:5df252f58b7f:bf65d53125bb36c085162b3780377f66d73972d1' #填写刚刚生成的密文
c.notebookapp.open_browser = false # 禁止notebook启动时自动打开浏览器
c.notebookapp.port =8889 #指定访问的端口,默认是8888。
Linux下安装jupyter

Linux下安装jupyter

 

 

 5. 启动jupyter notebook --no-browser

直接起动会报不建议以root身份运行.使用--allow-root绕过过.所以我们要执行以下命令:

jupyter notebook --allow-root 

Linux下安装jupyter

 

 6. 然后你就可以在浏览器里敲入你的地址 http://yourip:8889/, 看到界面就是安装成功了

Linux下安装jupyter