标签:tensorflow
1、安装完成后,打开Anaconda Prompt,创建TensorFlow虚拟环境
在Prompt中输入:
>>> conda create -n tensorflow python=3.5
2、进入TensorFlow环境,输入
>>> activate tensorflow
在命令行前,你就可以看到在输入提示符前加了(tensorflow)
变成了这样:
(tensorflow)...>>>
如果要退出该虚拟环境,输入 deactive tensorflow 即可
3、安装GUP版的tensorflow
pip install tensorflow-gpu
安装CPU版的tensorflow
pip install tensorflow
$ python
>>> import tensorflow as tf
>>> hello = tf.constant(‘Hello, TensorFlow!‘)
>>> sess = tf.Session()
>>> print sess.run(hello)
Hello, TensorFlow!
>>> a = tf.constant(10)
>>> b = tf.constant(32)
>>> print sess.run(a+b)
42
>>>
标签:tensorflow
原文地址:http://11241693.blog.51cto.com/11231693/1950024