如何安装TF r1.3? - 在 win10 上的 pip3 包中找不到 Tensorflow-gpu 包
How to install TF r1.3? - Tensorflow-gpu package not found from pip3 packages on win10
我尝试使用 Python 3.6 在 Windows 10 上安装 Tensorflow-gpu r1.3。
当我尝试按照 TF 网页中的说明通过 pip3 安装它时,出现以下错误消息:
Could not find a version that satisfies the requirement tensorflow-gpu (from versions: )
No matching distribution found for tensorflow-gpu
经过一些谷歌搜索后,我发现了 pip 应该升级的建议,但它已经是最新的了:
Requirement already up-to-date: pip in c:...
另外,当我 运行 pip3 搜索 tensorflow 时,我发现了很多其他与 TF 相关的包,但是 tensorflow 和 tensorflow-gpu.
那么我怎样才能安装最新的 tensorflow-gpu,最好是通过 pip3?
Tensoflow-gpu 可用于 64 位 Python。你需要安装64位Python 3.6然后pip3 install tensoflow-gpu
.
我尝试使用 Python 3.6 在 Windows 10 上安装 Tensorflow-gpu r1.3。
当我尝试按照 TF 网页中的说明通过 pip3 安装它时,出现以下错误消息:
Could not find a version that satisfies the requirement tensorflow-gpu (from versions: ) No matching distribution found for tensorflow-gpu
经过一些谷歌搜索后,我发现了 pip 应该升级的建议,但它已经是最新的了:
Requirement already up-to-date: pip in c:...
另外,当我 运行 pip3 搜索 tensorflow 时,我发现了很多其他与 TF 相关的包,但是 tensorflow 和 tensorflow-gpu.
那么我怎样才能安装最新的 tensorflow-gpu,最好是通过 pip3?
Tensoflow-gpu 可用于 64 位 Python。你需要安装64位Python 3.6然后pip3 install tensoflow-gpu
.