I have a Raspberry Pi 4B with Ubuntu Server 20.04 and I’m getting an error when trying to install tensorflow.
JavaScript
x
7
1
ubuntu@pi1:~$ pip3 install tensorflow
2
ERROR: Could not find a version that satisfies the requirement tensorflow
3
ERROR: No matching distribution found for tensorflow
4
5
ubuntu@pi1:~$ pip3 install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow_cpu-2.4.0-cp38-cp38-manylinux2010_x86_64.whl
6
ERROR: tensorflow_cpu-2.4.0-cp38-cp38-manylinux2010_x86_64.whl is not a supported wheel on this platform.
7
I have Python 3.8.5 64-bit installed
JavaScript
1
9
1
ubuntu@pi1:~$ python
2
Python 3.8.5 (default, Jul 28 2020, 12:59:40)
3
[GCC 9.3.0] on linux
4
Type "help", "copyright", "credits" or "license" for more information.
5
>>> import platform
6
>>> platform.architecture()
7
('64bit', 'ELF')
8
>>>
9
My pip is also >19.0
JavaScript
1
3
1
ubuntu@pi1:~$ pip3 -V
2
pip 20.3.3 from /home/ubuntu/venv/lib/python3.8/site-packages/pip (python 3.8)
3
Advertisement
Answer
From the comment section for the benefit of the community.
You need to look for aarch64/arm64
package in order to install Tensorflow
on Ubuntu 20.4
.