tensorflow – Installing tflite-runtime in Raspberry Pi

Trying to install tflite-runtime in Raspberry Pi Zero but no success. Installed tflite without any issue, and even check if tflite-runtime is in pypi.org/simple, which it is. This is the errors I get:

(env) pi@raspberrypi:~ $ pip install tflite
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Requirement already satisfied: tflite in ./env/lib/python3.11/site-packages (2.18.0)
Requirement already satisfied: flatbuffers in ./env/lib/python3.11/site-packages (from    tflite) (20181003210633)
Requirement already satisfied: numpy in /usr/lib/python3/dist-packages (from tflite) (1.24.2)
(env) pi@raspberrypi:~ $ pip install tflite-runtime
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
ERROR: Could not find a version that satisfies the requirement tflite-runtime (from versions: none)
ERROR: No matching distribution found for tflite-runtime
(env) pi@raspberrypi:~ $ python3 -m pip install tflite-runtime
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
ERROR: Could not find a version that satisfies the requirement tflite-runtime (from versions: none)
ERROR: No matching distribution found for tflite-runtime
(env) pi@raspberrypi:~ $ python
Python 3.11.2 (main, Nov 30 2024, 21:22:50) [GCC 12.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()    

Why is this happening? What’s the problem?

Thanks in advance for any help to solve this issue.

Read more here: Source link