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

jupyter notebook 环境搭建

程序员文章站 2022-03-03 19:45:55
...

系统

  ubuntu 16.04

搭建步骤

安装anaconda

  直接从 https://www.anaconda.com/distribution/#download-section 下载二进制文件,一路回车、yes即可。默认安装在  ~/ 目录下面

配置环境变量

  ~/.bashrc 下面,添加环境变量  export PATH="~/anaconda3/bin:${PATH}"
  source ~/.bashrc
  anaconda --version  验证版本

安装markdown插件

  pip install https://github.com/mli/notedown/tarball/master

设置jupyter notebook 远程登陆密码

   在 ipython 下面执行如下程序
   from notebook.auth import passwd
   passwd() #按照提升输入登录密码,之后记录下如下字符串
   'sha1:XXX'

修改配置文件

 jupyter notebook --generate -config 
 vim ~/.jupyter/jupyter_notebook_config.py  #编辑文件,文件末尾增加如下内容
 c.NotebookApp.ip=u'0.0.0.0' # 老版本  c.NotebookApp.ip=u'*',否则会出现错误
 c.NotebookApp.password = u'sha1:xxx'  # passwd 后生成的
 c.NotebookApp.contents_manager_class = 'notedown.NotedownContentsManager'
 c.NotebookApp.notebook_dir = u'' # 配置默认启动目录

启动jupyter

 jupyter notebook