Jupyter notebook 安装

2020-02-12  本文已影响0人  秋天黄山

1 更新升级

sudo apt-get update
sudo apt-get upgrade

2 安装并更新pip包

sudo apt-get install python-pip
sudo pip install --upgrade pip

3 安装jupyter notebook

sudo pip install jupyter

若出现错误:ERROR: Package 'tornado' requires a different Python: 2.7.17 not in '>= 3.5',则需要pip3来进行安装:
sudo pip3 install jupyter

4 配置相关信息

  1. 生成配置文件
    jupyter notebook --generate-config
  2. 添加密码
    jupyter notebook password
  3. 配置文件的位置每个人不一定一样
    vim /root/.jupyter/jupyter_notebook_config.py
    修改:
    c.NotebookApp.ip = '0.0.0.0'
    c.NotebookApp.open_browser = False
    c.NotebookApp.password = "****" //根据提示添加sha1在此处
    c.NotebookApp.port = 8888

4 运行jupyter notebook

jupyter notebook
jupyter notebook --allow-root

5 后台运行

控制台退出也保持 jupyter 运行
nohup jupyter notebook --allow-root &
nohup jupyter notebook --allow-root > error.log & //此条命令能够生成错误日志

6 后续添加

在阿里云服务器上部署后要增加相应的端口的安全组入规则,才能运行。

参考
1.在阿里云 Ubuntu 16.04 上安装 jupyter notebook
2.Ubuntu16.04 Jupyter安装(Ipython Notebook安装)

如有侵权,请联系 qiutianhuangshan@gmail.com 删除。

上一篇 下一篇

猜你喜欢

热点阅读