在Windows上安装TensorFlow

YSc*_*iff 5 python pip tensorflow

我正在尝试在Windows上安装tensorflow。我有python3(3.5.2)和pip3(9.0.1):

pip3 install --upgrade tensorflow

Collecting tensorflow

  Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
Run Code Online (Sandbox Code Playgroud)

在这里也发现了这个问题:在pip中找不到tensorflow, 但是没有一个解决方案对我有用。有任何想法吗?

Jac*_*oge 5

在Python命令提示符处尝试以下操作:

import platform
platform.architecture()[0]
Run Code Online (Sandbox Code Playgroud)

它应该显示“ 64bit”仅具有x86版本的Python是不够的。我有同样的问题。以为我安装了64位,但结果却是32位。

顺便说一句。它也可以与Conda Python 3.6发行版配合使用。确实可以使用Guillaume Jacquenot指示的Gohlke页面上的发行版。