I’m trying to import tflite-support.task on Raspberry Pi 4. However, I’m getting:
ModuleNotFoundError: No module named 'tflite_support.task'
Python version is 3.11.2 and tflite-support is 0.1.0a1.
I did some research and found that 0.1.0a1 version doesn’t include task library but the requirement for the object detection model in the GitHub repository is tflite-support>=0.4.2.
When I try to install the dependency via pip:
python -m pip install --upgrade tflite-support==0.4.4,
the output is:
ERROR: Could not find a version that satisfies the requirement tflite-support==0.4.4 (from versions: 0.1.0a0.dev3, 0.1.0a0.dev4, 0.1.0a0.dev5, 0.1.0a0, 0.1.0a1) ERROR: No matching distribution found for tflite-support==0.4.4
I’m kind of confused. Any idea of fixing the problem?