'can't install mediapipe? python 3.8

I have tried to use pip install mediapipe, and other similar methods of pip install to install mediapipe as i need it for one of my projects. I am stumped and don't know what to do anymore. I have python 3.8 and the latest version of pip. This is the error I keep getting: enter image description here

ERROR: Could not find a version that satisfies the requirement mediapipe (from versions: none)
ERROR: No matching distribution found for mediapipe


Solution 1:[1]

you can specify the specific version of the lib

such as:

pip install mediapipe==0.8.9.1 (the version which you want.)

Solution 2:[2]

You have to change the python version to 3.7 with 64bit then only you can install it if you can create a virtual environment for it as well so that will do great

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 baozilaji
Solution 2