美文网首页
jupyter notebook与环境

jupyter notebook与环境

作者: sherrysack | 来源:发表于2017-06-12 16:51 被阅读0次

    因为以前听取了网上的建议,一个项目单独使用其特有的的env, 却忘了要为每一个env都安装一次jupyter notebook, 导致装了按要求安装了package还是报错找不到对应的package,特此记录一下,如何查出jupyter notebook所运行的env:新建cell,在cell里输入并运行:

    import sys
    sys.path
    

    run后得到的结果如果没有你指定的env name的话,那么jupyter notebook肯定运行在root路径下。需要重新打开command line并activate指定的env,然后再运行jupyter notebook。

    在新建的env下安装jupyter notebook的方法:

    source activate tensorflowproblem
    conda install notebook ipykernel
    ipython kernel install --user
    #python -m ipykernel install --user --name other-env --display-name "Python (other-env)"

    相关文章

      网友评论

          本文标题:jupyter notebook与环境

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