Python 安装 Tensorflow 1.4
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/48554874/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Installing Tensorflow 1.4
提问by Steven G
Any idea how to install Tensorflow-gpu version 1.4 on Windows 10? I've looked everywhere and cannot seem to figure it out. I'm trying to run Neural Networks on my GPU using Tensorflow, Keras, and Cuda 8.0.
知道如何在 Windows 10 上安装 Tensorflow-gpu 1.4 版吗?我到处找,似乎无法弄清楚。我正在尝试使用 Tensorflow、Keras 和 Cuda 8.0 在我的 GPU 上运行神经网络。
回答by LocalhostNotfound
Before installing tensorflow, you will need to make sure that you have CUDA installed on your machine (this will only work if you have an NVIDIA GPU). You will also need cuDNN.
Once you have these installed, you can install it with pip install tensorflow==1.4.0
.
For more details, see this tensorflow.org tutorial.
在安装 tensorflow 之前,您需要确保您的机器上安装了 CUDA(这仅在您拥有 NVIDIA GPU 时才有效)。您还需要cuDNN。安装这些后,您可以使用pip install tensorflow==1.4.0
. 有关更多详细信息,请参阅此 tensorflow.org 教程。