# TensorFlow机器学习框架-学习笔记-001
### 测试TensorFlow环境是否安装完成-----------------------------```import tensorflow as tf
hello = tf.constant(‘Hello,TensorFlow!‘)sess = tf.Session()print(sess.run(hello))```
TensorFlow机器学习框架-学习笔记-001
原文:https://www.cnblogs.com/jiftle/p/9190815.html