美文网首页
jupyter python3遇到的各种坑

jupyter python3遇到的各种坑

作者: haokeed | 来源:发表于2019-05-05 14:17 被阅读0次

    windows10+python3.7.3
    在安装过程中遇到了一些坑,可能是jupyter版本的是最新的管理,里面命令好像有点变了的样子.
    1.安装

    image.png
    代码块
    pip install jupyter
    sudo -H pip install jupyter
    2.启动
    image.png
    代码块
    jupyter-notebook //注意这里中间有一个"-" 应该是新版本的关系
    3.打开python
    image.png
    image.png
    image.png
    注意这里会有启动失败的情况,然后命令窗口会有一大批报错
    image.png
    然后找了各种问题,最后发现可能还是啥相关东西太旧了。再找到了解决方式
    http://quabr.com/52734739/kernelrestarter-restart-failed-in-jupyter-kernel-died
    方式代码
    pip install --upgrade prompt-toolkit==2.0.4 (old is 1.0.15)
    pip install --upgrade ipython==7.0.1 (old is 6.5.0)
    pip install --upgrade jupyter-console==6.0.0 (old is 5.2.0)
    注意是2个等号,上面这个文章中老外也是粗心,只有一个等号了。
    4.关闭命令窗口,重新跑下2步骤就好了。

    相关文章

      网友评论

          本文标题:jupyter python3遇到的各种坑

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