简体   繁体   English

无法在 Python3 中安装 tensorflow 模块

[英]Unable to install tensorflow module in Python3

I'm installing tensorflow.我正在安装 tensorflow。 My system has the following specifications:我的系统具有以下规格:

py --version
Python 3.8.2

I tried the following commands to install tensorflow module我尝试了以下命令来安装 tensorflow 模块

py -m pip install --upgrade tensorflow
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow
py -m pip install tensorflow==2.2
ERROR: Could not find a version that satisfies the requirement tensorflow==2.2 (from versions: none)
ERROR: No matching distribution found for tensorflow==2.2
py -m pip install tensorflow==2.2.0
ERROR: Could not find a version that satisfies the requirement tensorflow==2.2.0 (from versions: none)
ERROR: No matching distribution found for tensorflow==2.2.0

What can I do to install this successfully on my machine?我该怎么做才能在我的机器上成功安装它?

TensorFlow supports only 64-bit system architecture. TensorFlow 仅支持 64 位系统架构。 Hence it shows compatibility issue in 32-bit and no matching distribution found.因此它显示了 32 位的兼容性问题并且没有找到匹配的分布。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM