Anaconda 安装 Tensorflow 教程

问题:在学习TensorFlow时,需要下载tensorflow-gpu或cpu版, 第三方库,始终卡着下载不了

提示如下异常信息:

An HTTP error occurred when trying to retrieve this URL.
HTTP errors are often intermittent, and a simple retry will get you on your way.

解决方案:

可以用清华大学提供的镜像

1.  打开 Anaconda Prompt 命令行工具

2.  使用以下命令,添加清华大学的地址库

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
​​​​​​​conda config --set show_channel_urls yes

3. 确认 condarc 配置文件信息是否更新

在C:\Users\用户名 目录下找到并打开 .condarc 文件加上如下内容:

channels:  
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/
  - defaults

show_channel_urls: true

4. 再次尝试下载 tensorflow 

conda create -n tensorflow python=3.8

Anaconda 安装 Tensorflow 教程_第1张图片

你可能感兴趣的:(Anaconda 安装 Tensorflow 教程)