【tensorflow】如何安装tensorflow的GPU版本

自从上次尝试复现R-CNN的代码,然后搞崩了tensorflow后,因为网速实在是太卡,安装了几次都已失败告终,下午顺利安装成功,分享一下经验。

先看一下自己的CUDA版本:

【tensorflow】如何安装tensorflow的GPU版本_第1张图片
对应下表:

【tensorflow】如何安装tensorflow的GPU版本_第2张图片

因此我选择安装tensorflow2.0版本!请仔细核对你的版本是否符合要求。

配置国内源:

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/

显示源地址:

conda config --set show_channel_urls yes

照常安装:

conda create -n tensor tensorflow-gpu=2.0

然后就是等待,等待系统自己找包下载!

【tensorflow】如何安装tensorflow的GPU版本_第3张图片

下载完成后,进入下载的环境中:

conda activate tensor

我们检查一下Python的位置:

在这里插入图片描述
再去检查一下ipython的位置,发现不在这个环境内,下载ipython:

【tensorflow】如何安装tensorflow的GPU版本_第4张图片
下载完成后打开ipython,输入tf.test.is_gpu_available()

【tensorflow】如何安装tensorflow的GPU版本_第5张图片
最终结果为:

【tensorflow】如何安装tensorflow的GPU版本_第6张图片
可以运行GPU,安装成功!

你可能感兴趣的:(软件安装教程,tensorflow,python)