pip install render not working - python

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.

Related

Error while attempting to install opencv-python using pip on Windows 10

I have been trying to install opencv for Python 3.8.0 on fresh install of Windows 10. Here is the command I ran:
C:\Windows\system32>py -m pip install opencv-python
However, I was met with this error:
ERROR: Could not find a version that satisfies the requirement opencv-python (from versions: none)
ERROR: No matching distribution found for opencv-python
I have tried:
Running the command prompt as admin
Upgrading pip using py -m pip install --upgrade pip
Checking to make sure I was able to install other libraries with pip. (I tried discord.py and Pillow, all worked)
opencv-python is a collection of pre-built whl files, as you can see in the project description on the pypi page:
OpenCV on Wheels
Unofficial pre-built OpenCV packages for Python.
And is the case for many modules currently, there are no whl files for python 3.8 in that project.
So simply install a different python version and try again with
pip install opencv-python
or
download the whl for python 3.8 from here and then do
pip install opencv_python‑4.1.2‑cp38‑cp38‑win_amd64.whl

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

I am getting pip version upgrade message while installing pygmaps

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

Install twisted under CentOS6

When I try to install a package, I have this error :
Could not find a version that satisfies the requirement Twisted>=16.0.0 (from matrix-synapse==0.27.4) (from versions: )
No matching distribution found for Twisted>=16.0.0 (from matrix-synapse==0.27.4)
So I try to install Twisted : pip install twisted
But I get this error :
Could not find a version that satisfies the requirement twisted (from versions: )
No matching distribution found for twisted
I'm working under CentOS6 and python2.7.
Use --verbose option with pip to see exact issue.
Sometimes pip unable to install twisted because of missing library called "libbz"
you can install libbz by below commands.
yum install libbz2
yum install libbz2-devel
Also install bzip
yum install bzip2
yum install bzip2-devel

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.

Categories