Search code examples
pythonpipmediapipe

could not find a version that satisfies the requirement mediapipe (from versions: none)


Please help me out to get rid of this error while installing the mediapipe library in python 3.7.9 .

I have tried upgrading pip version but nothing so far seems to help

My current pip version is 21.3.1

I am running Windows 7 (32 bit) machine


Solution

  • Please note that MediaPipe Python PyPI officially supports the 64-bit version of Python 3.7 and above on the following OS:
    x86_64 Linux
    x86_64 macOS 10.15+
    amd64 Windows

    Find details From the official docs of mediapipe here

    You'll have to run python and pip binary above 3.7 on a 64-bit OS. If your OS is unsupported/this doesn't work, you'll have to build the python mediapipe package. Follow the steps from official docs here

    if you are building the package, also make sure you have opencv pre-installed. You can use the following command to install OpenCV

    pip install opencv-python
    

    Building the pipelone might seem overwelhming from a beginner perspective, however just read and follow the clearly mentioned steps and your problem will be solved.