26 配置TensorFlow 1.9

https://www.ctolib.com/topics-133854.html

sudo apt install libatlas-base-dev
pip3 install tensorflow

然后就可以运行 python3,可以在任何你想用的平台上使用 TensorFlow,下面是简单的「hello world」的例子

# Python
import tensorflow as tf
tf.enable_eager_execution()
hello = tf.constant(‘Hello, TensorFlow!’)
print(hello)
原文地址:https://www.cnblogs.com/kekeoutlook/p/11355072.html