首页 > Windows开发 > 详细

windows Anaconda TensorFlow

时间:2017-07-22 22:10:56      阅读:273      评论:0      收藏:0      [点我收藏+]

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

原文:http://11241693.blog.51cto.com/11231693/1950024

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!