其实步骤是很简单的,只是一开始在网上找了一份错误的教程的原因,掉入了坑。
安装过程:
1. 检查pip版本
pip3 -V
要求使用最新版的pip 9.0.1,如果不是,按照下面的方法安装最新的pip3
sudo apt-get update sudo apt-get upgrade //更新apt-getwget https://bootstrap.pypa.io/get-pip.py sudo python3 get-pip.py sudo pip3 install setuptools --upgrade
之后再次运行pip3 -V检查。
2. 安装tensorflow
sudo pip3 install tensorflow,然后就可以等着了,直到安装完成
3. 第一个tensorflow程序
$ python3>>> import tensorflow as tf>>> hello = tf.constant('Hello, TensorFlow!')>>> sess = tf.Session()>>> print (sess.run(hello))Hello, TensorFlow!>>> a = tf.constant(10)>>> b = tf.constant(32)>>> print(sess.run(a+b))42
安装成功
注:pip3是python3的,pip是python2.7的
参考博客: