树莓派安装Tensorflow的方法

就在本月,TensorFlow1.9已经支持树莓派啦!

树莓派安装Tensorflow的方法_第1张图片

 

那么,今天就讲一下如何在树莓派上安装TensorFlow

 

1,如果没有python3.5, 首先安装Python3.5  :

sudo apt-get install python3.5

 

2.安装TensorFlow:

sudo apt install libatlas-base-dev

pip3 install tensorflow

 

3测试:

树莓派安装Tensorflow的方法_第2张图片

成功!!

 

注意:

需要你的python的版本是3.5

如果不是,那么需要安装python3.5 再更换成python3.5

 

更换方法:

1.删除已有的python 链接:

sudo rm /usr/bin/python

 

2.添加安装好的python3.5 版本

sudo ln -s /usr/bin/python3.5 /usr/bin/python

 

3.查看当前版本

python -V

 

参考链接:

https://blog.csdn.net/u011489887/article/details/79099419

http://shumeipai.nxez.com/2018/08/03/tensorflow-officially-supports-the-raspberry-pi.html

你可能感兴趣的:(Python)