anaconda安装TensorFlow-GPU2.1

python安装https://blog.csdn.net/qq_43597899/article/details/105551684
cuda和cuddn的安装也可以参照这篇博客。(conda命令是不需要自己安装的,pip命令式需要自己安装的,anaconda的包管理能力很强大)
很多教程以及他们的资料都是使用ipython的,所以还是anaconda安装TensorFlow。

1.新建名为TensorFlow的虚拟环境
为什么创建虚拟环境
https://blog.csdn.net/godot06/article/details/81079064

conda create --name tensorflow python=3.7
conda info --envs

可以查看现有的虚拟环境,因为我原先有一个所以询问我是否删除原有的环境。
选择y。
anaconda安装TensorFlow-GPU2.1_第1张图片

2.进入创建的虚拟环境

activate tensorflow

anaconda安装TensorFlow-GPU2.1_第2张图片
3.安装TensorFlow-GPU2.1
建议conda install tensorflow-gpu==2.1
如果用pip install tensorflow-gpu==2.1就需要自己安装cuddn和cuda

4.测试

anaconda安装TensorFlow-GPU2.1_第3张图片

参考文章
https://blog.csdn.net/godot06/article/details/104782466/

你可能感兴趣的:(-------Python)