python: pip install opencv-python give me error - python

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.

Related

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:
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

Issue with installing ethnicolr package

When I try to install ethnicolr, received an error
"Could not find a version that satisfies the requirement tensorflow==1.12.3(from ethniclor)"
Current version of tensorflow is 1.14, uninstalled it, and tried to install the version of 1.12.3 but get error complaining that could not find a version.
is there anyway to install the package?
One solution is to install a previous version of ethnicolr
pip install ethnicolr==0.2.0
https://github.com/appeler/ethnicolr/issues/16

Tensorflow will not install

Trying to install tensorflow but no matter the method an error installing it always shows
I have tried installing the whl and I have installed the virtualenv
C:\Windows\system32>pip3 install --upgrade tensorflow
I get this error:
Collecting tensorflow ERROR: Could not find a version that satisfies
the requirement tensorflow (fro m versions: none) ERROR: No matching
distribution found for tensorflow
I would hope that tensorflow would install from any of the methods I have tried but I have gotten an incompatible whl error and the error shown above.
Try this:
pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.0-py3-none-any.whl
I've used this before. Tell me if it works! =)
You may try to install using link in anaconda -
https://anaconda.org/conda-forge/tensorflow
Had the same problem till I figured out that you need python 3.5.2 for tensorflow, could not install it in 3.6

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/."

Python- pip install googleplaces

why am i getting error? while installing package for google places
i tried pip,easy_install and myenv but couldnt install
this is the error
Could not find a version that satisfies the requirement googleplaces (from versions: )
No matching distribution found for googleplaces
Package is python-google-places
Try this:
pip install python-google-places
Or
pip install https://github.com/slimkrazy/python-google-places/zipball/master
See documentation for details:
https://github.com/slimkrazy/python-google-places#installation
Also pay attention that python3 requires its own pip for installing google places or any other library. I experienced such error :/

Categories