-
Windows Tensorflow GPU install:
- Install Cuda
- Install CuDnn 5.1 (not 6.0), put it under Cuda folder and add installation folder to system env path
- Install MSVCP140.DLL:
- "pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/gpu/tensorflow_gpu-1.0.1-cp35-cp35m-win_amd64.whl"
- Test installation:
- import tensorflow as tf
- hello = tf.constant('Hello, TensorFlow!')
- sess = tf.Session()
- print(sess.run(hello))