美文网首页
(Anaconda)jupyter notebook安装新的Ke

(Anaconda)jupyter notebook安装新的Ke

作者: XueLianLi | 来源:发表于2020-06-15 17:18 被阅读0次

    为了使得jupyter notebook可以切换kernel来切换不同版本的tensorflow,以下的$NAME自行替换。

    1. 新建虚拟环境

    打开anaconda prompt

    conda create -n $NAME python=3.6

    conda activate $NAME

    2. 在新环境中安装tensorflow

    conda install --channel https://conda.anaconda.org/anaconda tensorflow-gpu=1.7.0(gpu版,去掉-gpu就是cpu版,有些太老的版本的没有)

    3. 创建新kernel

    conda install ipykernel(如果没安装过的话)

    python -m ipykernel install --name $NAME

    P.S. gpu版本的tensorflow需要安装cuda和cuDNN(这个应该不区分处于哪个环境?)

    相关文章

      网友评论

          本文标题:(Anaconda)jupyter notebook安装新的Ke

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