I was trying to install PyQt5 version 5.7.1 on my raspberry pi but I have an issue about installation. When I try:
sudo pip3 install pyqt5==5.7.1 or
sudo python3 -m pip install PyQt5==5.7.1
I get error like:
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Collecting pyqt5==5.7.1
Could not find a version that satisfies the requirement pyqt5==5.7.1 (from versions: 5.14.0, 5.14.1)
No matching distribution found for pyqt5==5.7.1
Then I try to install it manually. I download the version on https://pypi.org/project/PyQt5/5.7.1/ and try to install with pip
sudo pip3 install PyQt5-5.7.1-5.7.1-cp34.cp35.cp36-abi3-manylinux1_x86_64.whl
(I got ERROR)
PyQt5-5.7.1-5.7.1-cp34.cp35.cp36-abi3-manylinux1_x86_64.whl is not a supported wheel on this platform.
What can I do?
Related
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 tried to install Ipthw.web by
sudo pip install Ipthw.web
But I got this error:
ERROR: Could not find a version that satisfies the requirement Ipthw.web (from versions: none)
ERROR: No matching distribution found for Ipthw.web
How do I install it?
Try to upgrade your pip version with this:
python -m pip install --upgrade pip
Then retry, I think you made a grammatical mistake
sudo pip install lpthw.web
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.
When I try pip install cryptodome it returns this:
Collecting cryptodome
Could not find a version that satisfies the requirement cryptodome (from versions: )
No matching distribution found for cryptodome
I've already tried updating pip, what should I do?
You should use pip install pycryptodome.
Here is a link to the documentation: https://pycryptodome.readthedocs.io/
working
pip3 install pycryptodomex
or
pip install pycryptodomex
if issus
sudo apt-get install pycryptodomex
(Debian linux)
you can use the pycryptodome package instead,
go to command prompt and type in : pip3 install pycryptodome
pycryptodome documentation link: https://pycryptodome.readthedocs.io/en/latest/src/installation.html
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!