Python 3.x 如何在Windows上安装TensorFlow

Python 3.x 如何在Windows上安装TensorFlow,python-3.x,windows,tensorflow,Python 3.x,Windows,Tensorflow,我正在尝试使用de命令安装tensorflow库: > pip install tensorflow 我已经有了最新版本的python(3.8.0),但是我得到了下一条错误消息: ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none) ERROR: No matching distribution found for tensorflow 我缺少什么?

我正在尝试使用de命令安装tensorflow库:

> pip install tensorflow
我已经有了最新版本的python(3.8.0),但是我得到了下一条错误消息:

ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow

我缺少什么?

现在Tensorflow支持Python 3.8 使用安装Tensorflow

pip install tensorflow

按照网站中提到的说明操作。

TensorFlow的分布式二进制文件目前不支持Python 3.8,您应该使用3.5、3.6或3.7版。谢谢@jdehesa,这就是问题所在,我安装了Python 3.6.8并完成了安装。