Closed PizzaMargherita21 closed 4 years ago
Solved by Installing the Edge TPU library as follows
sudo apt-get update
sudo apt-get install python3-edgetpu
I have the same problem. If I use sudo apt-get install python3-edgetpu
I get the message " E: Package python3-edgetpu cannot be found"
Many thanks in advance
Hey,
Installing the Debian package python3-edgetpu
works fine but only under global system environment. However how can I import and use edgetpu
in my virtual environment? Is there a pypi release available for the package?
@Karsten12345 did you add the source list rule and do an apt update? @jingw222 please refer to this answer: https://github.com/google-coral/edgetpu/issues/1#issuecomment-590433931
I am having the same issue.
#########NO Module named edgetpu############
pi@raspy:~/DeepPiCar/models/object_detection $ python3 code/coco_object_detection.py
Traceback (most recent call last):
File "/home/pi/DeepPiCar/models/object_detection/code/coco_object_detection.py", line 9, in
The following packages have unmet dependencies: python3-edgetpu : Depends: python3 (< 3.9) but 3.9.2-3 is to be installed E: Unable to correct problems, you have held broken packages.
@PrometheusAlatheia edgeptu api is deprecated. Please uninstall it and install pycoral from software center.
Please check these sample examples and make the necessary code changes for your script: https://github.com/google-coral/pycoral/tree/master/examples
Thanks!
same error
2023-10-24 14:49:05 ERROR:Failed to load the extension "EdgeGPT".
Traceback (most recent call last):
File "F:\A1111\Chat\text-generation-webui\modules\extensions.py", line 36, in load_extensions
exec(f"import extensions.{name}.script")
File "
Currently, I'm working on a PiCar-V with Respberry 3+, but I have the same issue with "No module named 'edgetpu'.
I have installed the TPU drivers and API’s as follows:
And when I try to run the live detection test with
python3 code/coco_object_detection.py
(described in this article https://towardsdatascience.com/deeppicar-part-3-d648b76fc0be?)I always get the following error:
Traceback (most recent call last): File "code/coco_object_detection.py", line 9, in <module> import edgetpu.detection.engine ModuleNotFoundError: No module named 'edgetpu'
Do you have any ideas about how to solve this issue?
Thank you. Cheers