码迷,mamicode.com
首页 > Windows程序 > 详细

windows Anaconda TensorFlow

时间:2017-07-22 22:40:06      阅读:583      评论:0      收藏:0      [点我收藏+]

标签: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

标签:tensorflow

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!