Anaconda中安装tensorflow报错:Could not find a version that satisfies the requirement tensorflow的解决办法

需求

在jupyter notebook 学习tensorflow相关,提示 No module named ‘tensorflow’,所以要安装tensorflow包。

报错

但是在安装时,总是提示:
ERROR:Could not find a version that satisfies the requirement tensorflow
如下图所示,无论指定什么版本,使用哪个镜像源都不行。
在这里插入图片描述

过程

进行了以下排查:

  1. python版本,我的Python版本是3.7,tensorflow要求的是3.6 - 3.9,所以是符合的。(python环境查看:直接输入python,可以看到是多少位的 32bit还是64bit)
  2. pip版本,我的pip版本是23,也是足够高了。
    在这里插入图片描述

最终解决

不知道为啥,我的anaconda安装的python版本是32位的,然而只有64位的才可以安装tensorflow,所以要安装64位的python,才可以。

Anaconda中安装tensorflow报错:Could not find a version that satisfies the requirement tensorflow的解决办法_第1张图片
如何将anaconda中32位的python转换为64位的python?
参考这篇:anaconda3下64位python和32位python共存

步骤大概是:

  1. 从python官网上下载64位的python包,进行安装
  2. 添加环境变量
  3. 在anaconda中创建名字一致的环境,如“Python36”
  4. 将安装的包替换到anaconda的环境包中 (环境位置可以使用 conda env list 命令进行查看)

使用python命令可以看到变为64bit的了
在这里插入图片描述

在这之后,按照提示升级pip

python -m pip install --upgrade pip -i https://pypi.douban.com/simple

Anaconda中安装tensorflow报错:Could not find a version that satisfies the requirement tensorflow的解决办法_第2张图片
再继续安装tensorflow就能成功安装了

pip3 install tensorflow==2.0.0 -i https://pypi.tuna.tsinghua.edu.cn/simple

Anaconda中安装tensorflow报错:Could not find a version that satisfies the requirement tensorflow的解决办法_第3张图片

你可能感兴趣的:(tensorflow,python,人工智能)