Win 7 + spyder + Tensorflow
2021-06-29 07:08
标签:aries alt run 调用 on() python3 lib create lan windows下安装Tensorflow搞定,最终使用spyder调用tensorflow ,记录一下 Anaconda是一种拥有各种Python库的集成环境,也支持Windows、Mac和Linux系统。 安装 TensorFlow 测试 python import tensorflow as tf hello = tf.constant(‘Hello, Tensorflow!‘) sess = tf.Session() print(sess.run(hello)) a = tf.constant(10) b = tf.constant(22) print(sess.run(a+b)) spyder 由于官网下载 Anaconda,默认自带python3.6;而TensorFlow当前对python的支持仅对3.5版本比较友好。所以需要看一下自己的spyder安装版本,我这个恰好是3.5.所以直接调用 转载:https://www.cnblogs.com/AriesQt/p/6772902.html Win 7 + spyder + Tensorflow 标签:aries alt run 调用 on() python3 lib create lan 原文地址:https://www.cnblogs.com/lmj-sky/p/10025494.html
文章标题:Win 7 + spyder + Tensorflow
文章链接:http://soscw.com/index.php/essay/99266.html