ubuntu 16.04 (低版本CPU)安装tensorflow

本人所使用的系统是 ubuntu 16.04 , python 2.7

1.安装 pip  : 运行如下指令

  sudo apt-get install python-pip python-dev

2.安装tensorflow:

  pip install tensorflow==1.2.1 (python2.7的版本,支持CPU) 因为本人所使用的系统为up2- board , 其cpu比较老,所以只能安装1.6版本以前的tensorflow, 这里安装了1.2.1版本的tensorflow

3.验证tensorflow是否安装正确,一次输入如下指令:(注意:$ 和 >>> 为提示符)

  $python

 >>> import tensorflow as tf

>>>sess = tf.Session()

>>>hello=tf.constant('Hello,Tensorflow!')

>>>print(sess.run(hello))

ubuntu 16.04 (低版本CPU)安装tensorflow_第1张图片

 ————————————————————————————————————————————————

在ubuntu中安装tensorflow后进行测试 当输入 >>> import tensorflow as tf 后 可能出现如下错误:

“非法指令 (核心已转储)”

这个错误的原因是cpu版本太低,但是tensorflow版本太高,安装低版本的tensorflow即可。具体过程如下:

sudo pip uninstall tensorflow  卸载掉原来的tensorflow

sudo pip install tensorflow==1.2.1 安装低版本进行测试。

完成!

你可能感兴趣的:(ROS,Ubuntu,tensorflow)