Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot install pyqt5-tools - 'Could not find a version that satisfies the requirement pyqt5-tools'

Tags:

python

pip

pyqt5

I try to install pyqt5-tools like this:

pip install pyqt5-tools

and the resulting out put is:

ERROR: Could not find a version that satisfies the requirement pyqt5-tools (from versions: none)

ERROR: No matching distribution found for pyqt5-tools

I need to download pyqt5-tools because I am trying to learn how to make GUIs with PyQt (I am a beginner programmer).

I have tried downloading different packages but anything related to PyQt has failed... It happens on both my Mac and Ubuntu machine.

I have checked that the packages are available on PyPI and literally copy-pasted the install command from the website into the terminal to make sure that I did not do it wrong.

like image 707
JSogaard Avatar asked Aug 15 '19 16:08

JSogaard


1 Answers

You can download pyside2 it includes almost everything in pyqt5-tools; pyqt5, pyuic5 and the qdesigner

pip install PySide2
like image 153
OmarInCS Avatar answered Oct 22 '22 13:10

OmarInCS