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?