windows Anaconda TensorFlow
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows Anaconda 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
>>>
以上是关于windows Anaconda TensorFlow的主要内容,如果未能解决你的问题,请参考以下文章