Why can't I install this python module with pip? - python

Why can't I install django-graphos? I have tried on Arch and Ubuntu and get this error:
pip install django-graphos
Downloading/unpacking django-graphos
Could not find a version that satisfies the requirement django-graphos (from versions: 0.0.1a0, 0.0.2a0)
Cleaning up...
No distributions matching the version for django-graphos

This is because the package has no version specified.
run this command instead:
pip install django-graphos==0.0.2a
Hope that helps!

Related

Install playwright from a local directory

I need to install playwright from a local directory containing archives without check [PyPI]. I'm using the command:
py -m pip install --no-index --find-links=MY/PATH playwright-1.27.1-py3-none-win_amd64.whl
And I'm getting an error:
ERROR: Could not find a version that satisfies the requirement greenlet==1.1.3 (from playwright) (from versions: 2.0.0)
ERROR: No matching distribution found for greenlet==1.1.3
I'm trying to find greenlet==1.1.3 for win_amd64 on PyPI for Python 3.11, but there is no such version there.
Is there any other option to install the playwright?
https://github.com/microsoft/playwright-python/issues/1622 :
Sounds like we need to upgrade to Greenlet v2 for that.

Can't install curses package in pycharm [ Could not find a version that satisfies the requirement curses-win(from versions: none)]

when i try to install curses-win package i head ERROR
ERROR: Could not find a version that satisfies the requirement curses-win (from versions: none)
Try to run this command from the system terminal. Make sure that you use the correct version of 'pip' installed for your Python interpreter
command output:
ERROR: Could not find a version that satisfies the requirement curses-win (from versions: none)
ERROR: No matching distribution found for curses-win
i've installed numpy and tensorflow clearly
I faced with this problem when I tried to install cantools using pip on Ubuntu 16.04 LTS. I solved this issue by installing the pytest-runner package previously:
$ pip install pytest-runner --user

Could not find a version that satisfies the requirement SoundRecognition

I want to install SoundRecongnition package but I'm getting the following error when I type: pip3 install SoundRecognition
"Could not find a version that satisfies the requirement SoundRecognition (from versions: )
No matching distribution found for SoundRecognition"
I tried upgrading the pip. Also tried using the --user tag but still facing the problem.
I'm using pip 19.0.3 version, python 3.7.0 version, and Pycharm as IDE.
ERROR: Could not find a version that satisfies the requirement speech_recognition (from versions: none)
ERROR: No matching distribution found for speech_recognition
just use
pip install SpeechRecognition
pip install SpeechRecognition
you just try above SpeechRecognition...i think sound recognition module not there in pip
There is no SoundRecongnition at PyPI (it is where from pip installs packages). What package do you mean? I cannot find it on the Net.
Do you mean SpeechRecognition?
pip install SpeechRecognition

Impossibility to install toripchanger with pip

I am trying to install the library toripchanger.
I did once:
C:\Users\Machintruc>pip install toripchanger
output:
Collecting toripchanger
Could not find a version that satisfies the requirement toripchanger (from versions: )
No matching distribution found for toripchanger
You are using pip version 18.0, however version 19.0.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
So I updated pip:
C:\Users\Machintruc>python -m pip install --upgrade pip
Collecting pip
Downloading https://files.pythonhosted.org/packages/d7/41/34dd96bd33958e52cb4da2f1bf0818e396514fd4f4725a79199564cd0c20/pip-19.0.2-py2.py3-none-any.whl (1.4MB)
100% |################################| 1.4MB 437kB/s
Installing collected packages: pip
Found existing installation: pip 18.0
Uninstalling pip-18.0:
Successfully uninstalled pip-18.0
Successfully installed pip-19.0.2
I tried again to install:
C:\Users\Machintruc>pip install toripchanger
output:
DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date.
A future version of pip will drop support for Python 2.7.
Collecting toripchanger
Could not find a version that satisfies the requirement toripchanger (from versions: )
No matching distribution found for toripchanger
I am not sure to upgrade Python will be usefull, besides I won't to debug all my scripts because I upgraded Python, 2020 is far away today.
No matching distribution found for toripchanger does mean it does not exist anymore anyway?
It exists, but the PyPi version only supports python3x. You can check out the relevant PyPi page. On the left there is an entry "Programming Language", which only lsits python::3. That is why your pip cannot find a version that matches your setup.
Consider using virtual environments if you need to use both python version on the same machine

Unable to install particular version of tensorflow with pip

Unable to install tensonflow with Pip.
pip install tensorflow==1.2.1
Collecting tensorflow==1.2.1
Could not find a version that satisfies the requirement tensorflow==1.2.1 (from versions: )
No matching distribution found for tensorflow==1.2.1
Try this:
pip install --user install tensorflow==1.2.1.
You might need to use pip3 instead of pip if using python 3.

Categories

Resources