美文网首页
Jupyter notebook 安装

Jupyter notebook 安装

作者: 秋天黄山 | 来源:发表于2020-02-12 21:23 被阅读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 删除。

    相关文章

      网友评论

          本文标题:Jupyter notebook 安装

          本文链接:https://www.haomeiwen.com/subject/hficfhtx.html