ubuntu16.04 Tensorflow-CPU pip安装测试

深度学习框架Tensorflow首试,最简单的安装方式:使用pip安装Tensorflow cpu版本。

一、查看python版本

通常系统默认安装python 2.7
在这里插入图片描述
如果python版本为3.x,则在需要安装的pip不同。
python 2.x和3.x版本之间的切换:https://blog.csdn.net/liyanliforever/article/details/90632836

二、安装pip

pythton 2.7版本

sudo apt-get update
sudo apt-get install python-pip python-dev

python3.5版本

sudo apt-get update
sudo apt-get install python3-pip python-dev

三、安装Tensorflow

pythton 2.7版本

pip install tensorflow 

python3.5版本

pip3 install tensorflow

错误提示

ubuntu16.04 Tensorflow-CPU pip安装测试_第1张图片
解决方法:
在install后面加–user

pip install --user tensorflow 
pip3 install --user tensorflow

四、验证tensorflow是否安装成功

1.在终端输入命令: python

2.进入python命令下,测试tensorflow:

import tensorflow as tf

sess = tf.Session()

hello=tf.constant(‘Hello,Tensorflow!’)

print(sess.run(hello))

3.回车,若在终端下显示 Hello,Tensorflow! 则表示安装tensorflow成功。

五、Tensorflow卸载

pythton 2.7版本

sudo pip uninstall tensorflow		

python3.5版本

sudo pip3 uninstall tensorflow

其他:还可安装GPU版本,通过bazel源码安装。
参考:
https://www.cnblogs.com/wmr95/p/7500960.html
https://blog.csdn.net/a781751136/article/details/80231406

你可能感兴趣的:(Tensorflow)