You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to use tensorflow-gpu to accelerate the inference of mediapipe-hand in Windows 10 with Python 3.8. However, tensorflow-gpu only supports version 2.10 and requires protobuf<3.20, while the oldest version of mediapipe (0.10.5) requires protobuf>3.20. How can I install both mediapipe and tensorflow-gpu to use GPU acceleration for mediapipe inference? Does anyone have a lower version of mediapipe?
The text was updated successfully, but these errors were encountered:
You want to use tensorflow-gpu to accelerate the inference of mediapipe-hand in Windows 10 with Python 3.8. However, there is an incompatibility issue:
TensorFlow-GPU (<=2.10) requires protobuf<3.20
MediaPipe (>=0.10.5) requires protobuf>3.20
This conflict makes it difficult to install both packages together.
1. Use a Compatible MediaPipe Version (Manual Installation)
Older versions of mediapipe (<=0.8.10) are compatible with protobuf<3.20, making them a viable solution.
hello, thank you very much for your answer @dev-jatin-mehra . I have tried to install mediapipe==0.8.10.2 via pip install mediapipe==0.8.10.2 before (include mediapipe==0.8.x et.) but i failed. The error is :
ERROR: Could not find a version that satisfies the requirement mediapipe==0.8.10.2 (from versions: 0.10.5, 0.10.7, 0.10.8, 0.10.9, 0.10.10, 0.10.11)
ERROR: No matching distribution found for mediapipe==0.8.10.2
so maybe cannot try older versions, the oldest version is 0.10.5, or do you have the package *.whl files about older versions. Looking forward to hearing from you, thank you.
I want to use tensorflow-gpu to accelerate the inference of mediapipe-hand in Windows 10 with Python 3.8. However, tensorflow-gpu only supports version 2.10 and requires protobuf<3.20, while the oldest version of mediapipe (0.10.5) requires protobuf>3.20. How can I install both mediapipe and tensorflow-gpu to use GPU acceleration for mediapipe inference? Does anyone have a lower version of mediapipe?
The text was updated successfully, but these errors were encountered: