How to install TensorFlow on Raspberry Pi
In this tutorial, I will show you how to install TensorFlow on Raspberry Pi.TensorFlow™ is an open source software library for high-performance numerical computation. Its flexible architecture allows easy deployment of computation across a variety of platforms (CPUs, GPUs, TPUs), and from desktops to clusters of servers to mobile and edge devices. Originally developed by researchers and engineers from the Google Brain team within Google’s AI organization, it comes with strong support for machine learning and deep learning and the flexible numerical computation core is used across many other scientific domains.
Requirements
- Raspbian should be installed
- Python 3.7 should be installed (How to install Python 3.7 on Raspberry Pi)
Install the dependencies
First of all start with installing dependencies.
sudo apt update
sudo apt install python3-dev python3-pip
sudo apt install libatlas-base-dev
sudo pip3 install -U virtualenv
Install Tensorflow
So let’s start installing tensorflow.
pip3 install tensorflow
It will install the tensorflow and dependent packages.
Leave a Reply