美文网首页
切换jupyter botebook的python内核版本

切换jupyter botebook的python内核版本

作者: meetliuxin | 来源:发表于2019-02-19 15:00 被阅读0次

    本文使用anaconda管理python版本
    1、查看已有python版本

    conda info --env

    2、创建Python环境

    conda create --name python35 python=3.5    #代表创建一个python3.5的环境,我们把它命名为python35
    

    3、管理和使用python环境
    进入python35环境:

    source activate python35
    

    4、删除python35

    conda remove -n python35 --all
    

    5、将python35这个环境作为jupyter notebook的内核
    先进入python35的环境

    pip install ipykernel
    python -m ipykernel install --name python35
    
    

    再重启jupyter notebook即可。

    相关文章

      网友评论

          本文标题:切换jupyter botebook的python内核版本

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