【发布时间】:2017-05-19 16:52:16
【问题描述】:
已经切换到 Python 3.5,因为 Tensorflow 仅支持 3.5。
我正在尝试通过以下命令使用 Tensorflow 安装指南:
pip3 install --upgrade tensorflow
结果如下:
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
运行 32 位 python
更新:
已更改为 64 位 Python,现已安装 tensorflow。仍然想知道 32 位是否可能,因为我在 Tensorflow 官方指南中找不到任何关于 32 位不起作用的信息。
【问题讨论】:
-
我怀疑官方版本只支持 64 位
-
我在任何地方都没有看到 Tensorflow 证实了这一点。有没有简单的方法可以切换到 64 位?
-
如果你想要 32 位,你必须从源代码构建。我从github.com/yaroslavvb/tensorflow-community-wheels 看到人们已经成功构建了 32 位版本(用于 Raspberry Pi)
标签: python tensorflow pip installation