I am getting pip version upgrade message while installing pygmaps - python

I am getting this error while installing pygmaps package in pycharm.
Could not find a version that satisfies the requirement pygmaps (from versions: )
No matching distribution found for pygmaps
You are using pip version 10.0.1, however version 19.1.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
I have already upgraded pip version to 19.1.1, but still showing this error.

pip install git+https://github.com/thearn/pygmaps-extended can you try this one ?
if it doesnt work
https://code.google.com/archive/p/pygmaps/downloads go to this link and download it manually and add to your site-packages

Related

I have pip version 19.3.1 but when installing requirements, it says I have version 9.0.3

I'm trying to install requirements.txt in pycharm, but pip version indicated version 9.0.3 whereas I have 19.3.1. It will not update saying that requirement is already satisfied.
I've tried upgrading it but it says requirement already satisfied
You are using pip version 9.0.3, however version 19.3.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
:\Users\User\Documents\Learn\Python\photography>python -m pip install --upgrade pip
Requirement already up-to-date: pip in c:\users\user\documents\learn\python\photography\venv\lib\site-packages (19.3.1)
Do you have two versions of Python installed? That could be the cause.
Your terminal has photography\venv activated
I'm guessing Pycharm is not using that virtualenv
Regardless, the version of pip shouldn't stop you from using a requirements file

pip install render not working

Simple question I'm sure but I am getting the error below when trying to run 'pip install render' on my Mac terminal.
pip install render
Collecting render
Could not find a version that satisfies the requirement render (from versions: )
No matching distribution found for render
You are using pip version 7.1.2, however version 10.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.

Could not find a version that satisfies the requirement for all the packages

I have recently configured python3 for other application and running on the same machine where python 2.7 was running.. I see python3 applications are working fine with command
python -m pip install package-name and
python3 manage.py runserver command
But I am facing trouble with my existing application and new application with following issue while installing package
You are using pip version 7.1.0, however version 9.0.3 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
Collecting django-allauth==0.27.0
Could not find a version that satisfies the requirement django-allauth==0.27.0 (from versions: )
No matching distribution found for django-allauth==0.27.0
This is the command I used,
pip install django-allauth==0.27.0
Anybody know how to resolve it?
This is the command output,
pip 7.1.0 from /Users/overflow/.virtualenvs/ion/lib/python2.7/site-packages (python 2.7)
Try installing another version:
pip install django-allauth
Make sure you're using the version of pip that corresponds to the version of Python you are using:
pip --version
Alternatively, be explicit in which version you use:
python3 -m pip install django-allauth
or
python2 -m pip install django-allauth
try
pip install --upgrade pip
first
and then
pip install django-allauth==0.27.0
I'm little confused with you'r version problem, but you can choose you'r python vertion using py-2.x or py -3.x. For example:
py -3.6 -m pip install djangp-allauth==0.27.0
py -2.7 -m pip install djangp-allauth==0.27.0
I fixed it by uninstalling PIP in each project and then reinstalling it.. Might not be a good solutions, but this works.

pip install pygmaps python

I am trying to instal pygmaps for my Python 3.5:
pip install pygmaps
I am getting this message:
Could not find a version that satisfies the requirement pygmaps (from versions: ) No matching distribution found for pygmaps
You tried to install the old version of pygmaps. Here the newest https://github.com/thearn/pygmaps-extended
For installing from git use this command:
pip install git+https://github.com/thearn/pygmaps-extended
pip downloads from PyPI and there is nothing to download from https://pypi.python.org/pypi/pygmaps
Go to https://code.google.com/archive/p/pygmaps/downloads, download pygmaps-0.1.1.tar.gz, unpack it and install.

Problems installing pyspatialite on OSX using pip

I am not experienced at installing python modules and I am not sure exactly what the errors here are telling me:
russells-mini:~ rful011$ pip install pyspatialite
Downloading/unpacking pyspatialite
Could not find a version that satisfies the requirement pyspatialite (from versions: 2.6.2-spatialite.2.3.1, 2.6.2-spatialite.2.4.0-4, 3.0.1-alpha-0)
Looking at the install logs it finds the 3 versions and then says "ignoring'.
Mac OS 10.9.4 with 2.7.I
It's probably a pre-release version. Try:
pip install --pre pyspatialite

Categories