Vishwajeet Mishra
Vishwajeet Mishra

Reputation: 11

Unable to install mediapipe on Python (3.12.1)

I'm trying to install mediapipe (with Python version 3.12.1), but it is not working.

pip install mediapipe
python -m pip install mediapipe 
python -m pip install mediapipe,whl

All I get is error after error.

System Details :

Upvotes: 1

Views: 1317

Answers (3)

Kovy Jacob
Kovy Jacob

Reputation: 1117

Update: as stated in this answer, mediapipe is now supported on Python 3.12 (see this documentation).

Upvotes: 1

Talha Tayyab
Talha Tayyab

Reputation: 27760

Currently mediapipe only supports till python 3.11 as tensorflow only support till python 3.11 for now.

These flexible tools are built on top of TensorFlow Lite for the best end-to-end on-device ML and hardware performance.

You need to use python 3.11 to install mediapipe successfully


enter image description here

https://developers.google.com/mediapipe

https://pypi.org/project/mediapipe/

Upvotes: 0

0x00
0x00

Reputation: 1123

Mediapipe doesn't support python 3.12 yet.

You'll have to install Python 3.11 to be able to install and use mediapipe.

Upvotes: 0

Related Questions