You're seeing the error because mediapipe
does not currently support Python 3.13. The package only provides precompiled binaries (wheels) for specific Python versions, and 3.13 is too new. To install mediapipe
, you’ll need to downgrade to Python 3.12 or lower. First, install Python 3.12 from the official Python website, then create a virtual environment using python3.12 -m venv mp-env
and activate it. Once inside the environment, run pip install mediapipe
and it should work without issues.