tensorflow-gpu-2.3.1安装 tensorflow安装 GPU版本tensorflow安装 tensorflow搭建

tensorflow-gpu-2.3.1安装 tensorflow安装 GPU版本tensorflow安装 tensorflow搭建

        • 1.首先打开Anaconda Prompt终端
        • 2. 搭建==tensorflow2.3.1 python 3.8.3==环境
        • 3.激活==tensorflow2.3.1==环境
        • 4.安装cudatoolkit cudnn
        • 5.安装tensorflow-gpu==2.3.1
        • 6. 检验是否可以使用

本人电脑GPU是GTX 1650,可以完美安装,应该大家都可以安装的!!!

1.首先打开Anaconda Prompt终端

tensorflow-gpu-2.3.1安装 tensorflow安装 GPU版本tensorflow安装 tensorflow搭建_第1张图片

2. 搭建tensorflow2.3.1 python 3.8.3环境

请输入以下代码

conda create --name tensorflow2.3.1 python==3.8.3

tensorflow-gpu-2.3.1安装 tensorflow安装 GPU版本tensorflow安装 tensorflow搭建_第2张图片

  • 遇到Process,直接输入“y”,回车就好!在这里插入图片描述

3.激活tensorflow2.3.1环境

输入以下代码

conda activate tensorflow2.3.1

tensorflow-gpu-2.3.1安装 tensorflow安装 GPU版本tensorflow安装 tensorflow搭建_第3张图片

4.安装cudatoolkit cudnn

输入以下代

conda install cudatoolkit=10.1 cudnn=7.6.5

tensorflow-gpu-2.3.1安装 tensorflow安装 GPU版本tensorflow安装 tensorflow搭建_第4张图片

  • 遇到Process,直接输入“y”,回车就好!在这里插入图片描述

5.安装tensorflow-gpu==2.3.1

输入以下代码,镜像源采用阿里云

pip install tensorflow-gpu==2.3.1 -i https://mirrors.aliyun.com/pypi/simple/

在这里插入图片描述

出现这样就安装好了
tensorflow-gpu-2.3.1安装 tensorflow安装 GPU版本tensorflow安装 tensorflow搭建_第5张图片

6. 检验是否可以使用

以此输入以下指令,查看对应版本,ok

python
import tensorflow as tf
tf.__version__
print(tf.test.is_gpu_available())

tensorflow-gpu-2.3.1安装 tensorflow安装 GPU版本tensorflow安装 tensorflow搭建_第6张图片

参考文献:tensorflow-gpu-2.3.1安装 tensorflow安装 GPU版本tensorflow安装 tensorflow搭建

你可能感兴趣的:(opencv学习笔记,tensorflow,python,深度学习)