Impossibility to install toripchanger with pip - python

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

Related

I want to install package gi in the python, but it shows error and warning

ERROR: Could not find a version that satisfies the requirement gi (from versions: none)
ERROR: No matching distribution found for gi
WARNING: You are using pip version 21.3.1; however, version 22.2.2 is available.
However, I use '''pip3 install --user --upgrade pip''' to check, it shows: Requirement already satisfied: pip in ./.local/lib/python3.10/site-packages (22.2.2)
I met the same problem when I installed other packages, I don' know why it shows I am using version 21.3.1.
Please, who can help me
I think you are looking for PyGobject in that case, try pip3 install PyGObject or follow the docs to install it since the installation can vary depending on your platform.

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

Pip is not installing TensorFlow Nightly Mac

Pip is not installing TensorFlow Nightly. Is there another way I can install it? Here is what I tried.
Louis-MacBook-Pro:~ yelouis$ python3 -m pip install tf-nightly
Collecting tf-nightly
Could not find a version that satisfies the requirement tf-nightly (from versions: )
No matching distribution found for tf-nightly
Louis-MacBook-Pro:~ yelouis$ pip install tf-nightly
Collecting tf-nightly
Could not find a version that satisfies the requirement tf-nightly (from versions: )
No matching distribution found for tf-nightly
Update: I have downloaded the file and trying to use the path to have pip install it. Here are the results and it is still not working.
You could try downloading tf-nightly from here, then install using pip install <path/to/package>.whl.
Make sure you download the one that is compatible with your Python version.

Could not find a version that satisfies the requirement selenium; No matching distribution found for selenium while installing Selenium on Python3.6.5

pip install selenium
throws error as:
Could not find a version that satisfies the requirement selenium;
No matching distribution found for selenium
Please guide as to how to proceed
This error message...
Could not find a version that satisfies the requirement selenium;
No matching distribution found for selenium
...implies that the Python Client was unable to install the Selenium related modules.
Your main issue probhably with either with the pip version or the Python installation.
Solution
Uninstall the current Python installation.
As you are on Windows 7 professional OS use CCleaner tool to wipe off all the OS chores before the new installation of Python Client.
Download and install a fresh version of compatible Python 3.6.5 binary/executable.
Ensure you are using latest version of pip (latest version 18.0 is available now):
C:\Users\username>python -m pip install --upgrade pip
Collecting pip
Downloading https://files.pythonhosted.org/packages/5f/25/e52d3f31441505a5f3af41213346e5b6c221c9e086a166f3703d2ddaf940/pip-18.0-py2.py3-none-any.whl (1.3MB)
100% |¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦| 1.3MB 544kB/s
Installing collected packages: pip
Found existing installation: pip 10.0.1
Uninstalling pip-10.0.1:
Successfully uninstalled pip-10.0.1
Successfully installed pip-18.0
Install latest version of Selenium:
C:\Users\username>pip install selenium
Collecting selenium
Downloading https://files.pythonhosted.org/packages/b8/53/9cafbb616d20c7624ff31bcabd82e5cc9823206267664e68aa8acdde4629/selenium-3.14.0-py2.py3-none-any.whl (898kB)
100% |¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦| 901kB 380kB/s
Requirement not upgraded as not directly required: urllib3 in c:\python\lib\site-packages (from selenium) (1.22)
Installing collected packages: selenium
Found existing installation: selenium 3.12.0
Uninstalling selenium-3.12.0:
Successfully uninstalled selenium-3.12.0
Successfully installed selenium-3.14.0
Or:
C:\Python35\Scripts\pip.exe install selenium
I had the same problem. I have conda, so I used it and it worked like a charm!
$conda install selenium
Instead of typing in pip install silenium I just entered: "pip.exe install selenium" and this worked for me
This worked for me:
Deactivate proxy Settings in Internet Explorer
Run pycharm in Windows 10 as Administrator
Then Upgrade pip with: pip install --upgrade pip
Install Selenium with: pip3 install selenium

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

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!

Categories

Resources