- python 安装
python 3.5 64位的版本,下载后安装。网址 - CUDA安装
网址大约1.2个G,下载后安装 - cudnn
- CSDN,win7,64位,V5
- 官网
- 下载压缩包后将相应文件夹内的dll文件放入到cuda的安装目录下
- 比如C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v8.0【默认路径】
- 添加CUDA_PATH到系统环境变量,变量值为cuda安装目录下的根路径,根路径下的bin,跟路径下的lib
- 例如:CUDA_PATH:C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v8.0;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v8.0\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v8.0\lib\x64
- TensorFlow-gpu
pip install --upgrade tensorflow-gpu
如果出现错误“Cannot remove entries from nonexistent file”,执行以下命令
pip install --upgrade -I setuptools
pycharm
下载地址HelloWorld
import tensorflow as tf
hello = tf.constant('Hello world, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
-
vc_redist.exe
- 如果你看到Failed to load the native TensorFlow runtime.你需要安装这个库
如果你看到Hello world, TensorFlow!在控制台输出,说明安装成功,have fun!
- 如果你看到Failed to load the native TensorFlow runtime.你需要安装这个库