打赏
禅在心中
东风夜放花千树,更吹落、星如雨。宝马雕车香满路。凤箫声动,玉壶光转,一夜鱼龙舞。 蛾儿雪柳黄金缕,笑语盈盈暗香去。众里寻他千百度,蓦然回首,那人却在,灯火阑珊处。

有时候,我们的电脑上或许会同时安装多个python的环境,譬如,我的电脑上同时装了anaconda2和3。

在安装的时候,譬如,我想在python3中装tensorflow,则需要在

C:\ProgramData\Anaconda2\envs\Anaconda3\Scripts

3的这个路径下,打开cmd,执行:pip install tensorflow

 

import tensorflow as tf

a = tf.placeholder(tf.float32)
b = tf.placeholder(tf.float32)
y = tf.add(a,b)
sess = tf.Session()
print(sess.run(y,feed_dict={a:3,b:4}))
sess.close()

  然后可以通过实验验证安装是否正确。

 

posted on 2017-12-31 10:32  禅在心中  阅读(840)  评论(0编辑  收藏  举报