PyCharm使用Anaconda新建的环境
Posted mstk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PyCharm使用Anaconda新建的环境相关的知识,希望对你有一定的参考价值。
首先,创建一个环境用来安装Tensorflow:
conda create -n tensorflow python=3.5.6
安装以后,在Anaconda Navigator可以看到已经增加了一个新环境:
在cmd窗口中输入:
conda activate tensorflow
安装Tensorflow的GPU版本:
pip install --upgrade --ignore-installed tensorflow--gpu
在PyCharm中,File->Settings->Projector Interpretor,在Projector Interpretor中Add,选择Virtualenv Environment,Existing Environment,选择C:ProgramDataAnaconda3envs ensorflowpython.exe,再点击OK。
以上是关于PyCharm使用Anaconda新建的环境的主要内容,如果未能解决你的问题,请参考以下文章