Post date: 2017/11/19 14:40:01
C: > conda create -n tensorflow python=3.6 C: > activate tensorflow (tensorflow)C:> pip install --ignore-installed --upgrade tensorflow tensorflow-1.4.0-cp36-cp36m-win_amd64.whl (tensorflow)C:> python >> import os >> os.environ('TF_CPP_MIN_LOG_LEVEL']='2' >> import tensorflow as tf >> helllo = tf.constant('Hello, TendowrFlow!') >> sess = tf.Session() >> print(sess.run(hello)) b'Hello, TensorFlow! >> exit() (tensorflow)C:> deactive tensorflow