Trying to install TensorFlow Lite (liteRT) in Raspberry Pi Zero W but not working. Following these directions:
/edge/litert/microcontrollers/python
/
but no luck - the package installer can't find it in both cases. Successfully installed another packages using pip3 in a python environment.
Is there any other way to install the mentioned TensorflowLite (liteRT)?
Thanks in advance for help!
Trying to install TensorFlow Lite (liteRT) in Raspberry Pi Zero W but not working. Following these directions:
https://ai.google.dev/edge/litert/microcontrollers/python
https://pypi./project/ai-edge-litert/
but no luck - the package installer can't find it in both cases. Successfully installed another packages using pip3 in a python environment.
Is there any other way to install the mentioned TensorflowLite (liteRT)?
Thanks in advance for help!
Share Improve this question asked Mar 29 at 16:39 gusgus 3612 gold badges6 silver badges21 bronze badges1 Answer
Reset to default 0I don't have enough reputations to comment so am posting this as a solution. Might not solve your problem but maybe help you think in editing your query to provide more details.
What's your OS? What's the error you're getting?
With the limited info you've posted, I can suggest the following. I'm assuming you're a beginner (I was clueless too a while ago) so pardon me if you're not:
Run these
sudo apt update
,
sudo apt upgrade --yes
,
sudo apt install python3-pip --yes
; and then try installing LiteRT using pip3 install tflite-runtime
PC