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

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

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

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

如何安装Tensorflow?谢谢。


当前回答

我在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

其他回答

这是我在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 3.6或3.7版本,但重要的是你应该安装64位的python版本。

我在ubuntu 18.04上使用的是3.6.8,对我来说,解决方案就是升级pip

pip install --upgrade pip
pip install tensorflow==2.1.0

1.访问https://www.tensorflow.org/install/pip网站,看看你使用的版本是否支持Tensorflow。某些最新版本不支持Tesnsorflow。直到Tensorflow为该Python版本发布其最新版本。

你必须安装64位python 是否安装了最新版本的PIP PIP安装——升级PIP

卸载Python然后重新安装解决了我的问题,我成功地安装了TensorFlow。