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 :/
Related
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
I am trying
!pip3 install waymo-open-dataset
in Colab, but I get
ERROR: Could not find a version that satisfies the requirement waymo-open-dataset (from versions: none)
ERROR: No matching distribution found for waymo-open-dataset
Try this.
Note: you should put your dependencies installation in another cell as it will help you narrow down problems that is related to python code or dependencies installation
!pip install --upgrade pip
!pip install waymo-open-dataset-tf-2-0-0==1.0.1 --user
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.
When trying to install pandas in cmd, I keep receiving the error:
"Could not find a version that satisfies the requirement jupyter (from
versions: ) No matching distribution found for jupyter:
I have spent a few hours looking for, and trying, different solutions for this error. If anyone can help me, it will greatly be appreciated. I am new to python and I am trying to expand my data analysis capabilities.
Try installing pipenv with pip3 instead of pipsi , refer to the link below for more info :
https://github.com/pypa/pipenv/issues/994
your question may also be related to 'pip install' fails for every package ("Could not find a version that satisfies the requirement")
So please try :
curl https://bootstrap.pypa.io/get-pip.py | python
pip install --upgrade setuptools
I am struggling installing anything with pip. Everything I try to install gives me this error:
Could not find a version that satisfies the requirement (package I am trying to install) (from versions: )
No matching distribution found for (package I am trying to install)
I have updated pip to the latest version.
Thanks for your help.
edit: Here is my pip and python versions:
click here for versions
It's part of the standard library, no need to install. Try python -c "import winsound".