安裝過程
https://www.tensorflow.org/install/install_windows
參考官方網站後也陸續裝了最新v9.1後發現不兼容還我還多繞一條路
正常人應該裝完這下面兩個就ok了
https://developer.nvidia.com/cuda-90-download-archive
https://developer.nvidia.com/cudnn
參考官方網站後也陸續裝了最新v9.1後發現不兼容還我還多繞一條路
正常人應該裝完這下面兩個就ok了
https://developer.nvidia.com/cuda-90-download-archive
https://developer.nvidia.com/cudnn

Cudnn Install
test.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tensorflow as tf | |
hello = tf.constant('Hello, TensorFlow!') | |
sess = tf.Session() | |
print(sess.run(hello)) |