can't install mediapipe? python 3.8 - python

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:
ERROR: Could not find a version that satisfies the requirement mediapipe (from versions: none)
ERROR: No matching distribution found for mediapipe

you can specify the specific version of the lib
such as:
pip install mediapipe==0.8.9.1 (the version which you want.)

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

Related

What could be the cause for the MediaPipe installation error on Windows with Python 3.8.3?

I try to install MediaPipe on Windows, but it doesn't work. What can I do now?
The command line used to start the installation with my userĀ“s profile directory being the current directory:
pip install mediatype
The output error messages are:
ERROR: Could not find a version that satisfies the requirement mediapipe
ERROR: No matching distribution found for mediapipe
WARNING: You are using pip version 21.0.1; however, version 21.1.2 is available.
You should consider upgrading via the 'c:\users\username\appdata\local\programs\python\python38-32\python.exe -m pip install --upgrade pip' command.
mediapipe doesn't support 32-bit python; all of the wheels are for 64-bit python.
mediapipe does not support 32-bit python. Go ahead, upgrade to 64-bit python and enjoy!

Problems installing tensorflow on Windows 10

i have been trying to install TensorFlow on my Win10 machine using pip, I have never had a problem using pip before but for some reason when I run pip install tensorflow with pip version 21.0.1 I get the following error
ERROR: Could not find a version that satisfies the requirement tensorflow
ERROR: No matching distribution found for tensorflow
I have tried to install using the --user tag but same problem occurs, i got the install command from the official website https://www.tensorflow.org/install,
if anyone knows what is causing pip to think the package doesn't exist any help appreciated.
Tensorflow supports only Python 3.5-3.8 versions. That might cause a problem.
You can read more at a similar post about that error; Could not find a version that satisfies the requirement tensorflow
I suggest you to use virtual environments created with Conda.
https://docs.anaconda.com/anaconda/install/windows/
If you use Conda, you can specify required Python version, pip libraries to that env and use it from anywhere in your OS.

I'm not able to install openCV in pycharm

I tried installing opencv by going to setting>project>project interpreter but it is showing me error: "Could not find a version that satisfies the requirement opencv-python (from versions: )
No matching distribution found for opencv-python"
https://i.stack.imgur.com/PGCpG.png
From opencv-python
The latest version for python 3 is opencv 3.4.9:
Currently, builds for following Python versions are provided:
2.7
3.4
3.5
3.6
3.7
So you need to install python 3.7. PyCharm can work with multiple python versions so you don't need to uninstall 3.8.2
suggests to install Anaconda, Add a New Conda Environment for your Project, try to install openCV through Anaconda, if still failed, pls try to change other repository. My repository is "https://pypi.tuna.tsinghua.edu.cn/simple/", and I succeeded installing openCV

python: pip install opencv-python give me error

I am install python 3.8.0v and run pip install opencv-python its give me error.
ERROR: Could not find a version that satisfies the requirement opencv-python (from versions: none)
ERROR: No matching distribution found for opencv-python
It seems opencv does not work on Python 3.8 yet, see this issue: https://github.com/skvark/opencv-python/issues/253
You can also refer to this question also Similar Question
What you can also try is installing opencv-contrib-python using pip.I have used the above solutions earlier and they worked for me in Python 3.5.1.They might also work for Python 3.7
Try to install the latest version of python. Or u can upgrade your pip ...
Or try installing opencv-contrib-python using pip.

Cannot install packages using pip

When i tried to install openCV using pip3 install opencv-python i got this error
Could not find a version that satisfies the requirement opencv-python (from versions: )
No matching distribution found for opencv-python
i have tried upgrading pip using
pip install --upgrade pip
and
curl https://bootstrap.pypa.io/get-pip.py | python
none of them helped me and pip is up to date
tried to download and compile opencv manually gives me bunch of errors
python version -2.7,3.6.2
pip version- up to date
raspberry pi 2
Normally this information means that your python version or OS version not compatible with any openCV version which pip can find on the internet.
Could not find a version that satisfies the requirement opencv-python (from versions: ) No matching distribution found for opencv-python
So, please check your python version (include 32bit or 64bit) and OS type, version, and then try pip again.
I use python3.6.5 32bit(virtualenv), windows 10 64bit install openCV succeed.
https://pypi.org/project/opencv-python/ says: "Note that the wheel (especially manylinux) format does not currently support properly ARM architecture so there are no packages for ARM based platforms in PyPI. However, opencv-python packages for Raspberry Pi can be found from https://www.piwheels.org/."

Categories