I am trying to install python modules in my raspberry pi 3B+ which is using Ubuntu Mate. For most of the modules i get the following error all the time
ERROR: Could not find a version that satisfies the requirement
For instance, I tried the following code:
pip install functools_lru_cache
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Collecting functools_lru_cache
ERROR: Could not find a version that satisfies the requirement functools_lru_cache (from versions: none)
ERROR: No matching distribution found for functools_lru_cache
It is not just this package but also pip install backports , pip install soupsieve, etc. Please Help !!!
Related
I have installed PyQt5 on my Macbook, however when I try and run the command to install the tools, I am getting an error as follows:
ERROR: Could not find a version that satisfies the requirement pyqt5-plugins<5.15.2.3,>=5.15.2.2 (from pyqt5-tools) (from versions: none)
ERROR: No matching distribution found for pyqt5-plugins<5.15.2.3,>=5.15.2.2 (from pyqt5-tools)
Here is the full input and output:
(base) _-Air:Chess-Final _$ pip3.7 install pyqt5-tools
Collecting pyqt5-tools
Using cached pyqt5_tools-5.15.2.3.0.2-py3-none-any.whl (28 kB)
ERROR: Could not find a version that satisfies the requirement pyqt5-plugins<5.15.2.3,>=5.15.2.2 (from pyqt5-tools) (from versions: none)
ERROR: No matching distribution found for pyqt5-plugins<5.15.2.3,>=5.15.2.2 (from pyqt5-tools)
WARNING: You are using pip version 20.2.3; however, version 20.3.3 is available.
You should consider upgrading via the '/usr/local/bin/python3.7 -m pip install --upgrade pip' command.
I have tried downloading QT designer from its website, but since I want it for personal use, I am not able to get it (it requires company information)
So it turns out that pyqt5-tools is only available for Windows as seen on their site: https://pypi.org/project/pyqt5-tools/
Try an alternative such as QT-creator for Mac: https://www.qt.io/download
This post strongly supports using Homebrew: Python PyQt on macOS Sierra
I am trying to make some basic facial recognition with my raspberry pi using OpenCV-python, however, I am unable to install OpenCV-python using pip3.
I tried to follow this guide
https://pysource.com/2018/10/31/raspberry-pi-3-and-opencv-3-installation-tutorial/
once this didn't work I tried using a fresh os and upgrading python to no avail.
This is what happens when I input the pip3 command
pi#raspberrypi:~ $ pip3 install opencv-python
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Collecting opencv-python
ERROR: Could not find a version that satisfies the requirement opencv-python (from versions: none)
ERROR: No matching distribution found for opencv-python
I expect that opencv-python should start installing
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
I am using Raspbian stretch and i am trying to install Pypiwin32 in Raspberry Pi 3 B+ and when i enter the command pip install pypiwin32 an error showing that:
Collecting pywin32>=223 (from pypiwin32)
Could not find the version that satisfies the requirements pywin32>=223 (from pypiwin32) (from versions: )
No matching distribution found for pywin32>=223 (from pypiwin32)
When i see this error and i download the pypiwin32 file and enter the command python setup.py install it gives an error No module named _winreg.
I am using Python2.7.15.
Please help me.
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!