CentOS7 安装 tensorflow 0.8
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7 安装 tensorflow 0.8相关的知识,希望对你有一定的参考价值。
1、确认python为2.7.0以上版本
python -V
2、安装
pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp27-none-linux_x86_64.whl
3、测试hello world
vim tf_hello.py
import tensorflow as tf
a = tf.constant(100)
b = tf.constant(20)
print sess.run(a+b)
4、执行hello world
python tf_hello.py
本文出自 “7727197” 博客,请务必保留此出处http://7737197.blog.51cto.com/7727197/1795610
以上是关于CentOS7 安装 tensorflow 0.8的主要内容,如果未能解决你的问题,请参考以下文章
Linux(CentOS7) 环境搭建 redis5.0.8 集群