【环境配置】Anaconda安装TensorFlow

Anaconda安装TensorFlow

Anaconda安装TensorFlow

1.打开Anaconda Prompt
在这里插入图片描述
2.输入下面两行命令,打开清华镜像官网

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
  • 1
  • 2
  • 3

在这里插入图片描述

3.输入下面命令,利用Anaconda创建一个python3.9的环境,环境名称为tensorflow(这里python版本根据自己的情况如下图)

在这里插入图片描述

conda create -n tensorflow python=3.9
  • 1
  • 2

如图所示:
在这里插入图片描述
4.输入y
在这里插入图片描述
5.打开Anaconda Navigator,点击Environments,可以看到名称为tensorflow的环境已经创建好
在这里插入图片描述
在这里插入图片描述
6.上一步最后我们可以看到,启动Tensorflow,使用下面的命令行:

conda activate tensorflow
  • 1
  • 2

在这里插入图片描述

关闭tensorflow环境,使用下面的命令行:
在这里插入图片描述
7.我们在这里输入下面的命令,进入tensorflow环境

conda activate tensorflow
  • 1
  • 2

在这里插入图片描述
8.输入下面的命令行,安装cpu版本的tensorflow

conda install tensorflow
  • 1
  • 2

在这里插入图片描述
此时我们再次查看Anaconda Navigator中的Environments,可以发现tensorflow已经安装好了

在这里插入图片描述
第8步注意!!!
如果出现下图情况或者是从GitHub上下载速度极慢,说明清华镜像网址没有切换成功

在这里插入图片描述
重新执行步骤二即可



你可能感兴趣的:(环境配置,tensorflow,深度学习,人工智能)