我安装了最新版本的Python(3.6.4 64位)和最新版本的PyCharm(2017.3.3 64位)。然后我在PyCharm (Numpy, Pandas等)中安装了一些模块,但当我尝试安装Tensorflow时,它没有安装,我得到了错误消息:

无法找到一个满足需求的版本 没有找到匹配的TensorFlow分布。

然后我尝试从命令提示符安装TensorFlow,我得到了同样的错误消息。 不过,我确实成功安装了tflearn。

我也安装了Python 2.7,但我再次得到相同的错误消息。我在谷歌上搜索了这个错误,并尝试了一些建议给其他人的东西,但都不起作用(这包括安装Flask)。

如何安装Tensorflow?谢谢。


当前回答

我通过pip install https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.8.0-py3-none-any.whl成功安装

其他回答

我在macOS (M1 Pro)上遇到了这个问题,即使安装了最新的64位Python和最新的pip。这就是我解决的方法。试着跑步:

pip install tensorflow-macos

如果你将得到这样的错误结尾(就像我做的那样)…

...
raise ReadTimeoutError(self._pool, None, "Read timed out.")
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.

...然后简单地运行:

pip install --default-timeout=100 tensorflow-macos

如果你正在使用anaconda,默认安装了python 3.7,所以你必须将它降级到3.6:

Conda安装python=3.6

然后:

PIP安装tensorflow

它在Ubuntu中为我工作。

使用python 3.6或3.7版本,但重要的是你应该安装64位的python版本。

这是我在M1 Pro上执行任务时得到的信息

Python -m PIP install tensorflow-macos

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

然后我从官方源代码重新安装python:

https://www.python.org/downloads/macos/

(是的,尽管看起来很愚蠢。)

然后我参考了《Monterey》的苹果教程:

https://developer.apple.com/metal/tensorflow-plugin/

那时一切都解决了。

不支持Python版本 卸载python

https://www.python.org/downloads/release/python-362/

您应该在安装页面中检查并使用正确的版本。 https://www.tensorflow.org/install/install_windows

Python 3.6.2或Python 3.5.2为我解决了这个问题