pyqt@5

Python bindings for Qt5 framework enabling GUI development

brewmacoslinux
Try with needOr install directly
Source

About

Python bindings for v5 of Qt

Commands

pyqt5

Examples

Create a simple PyQt5 application window$ python3 -c "from PyQt5.QtWidgets import QApplication, QMainWindow; app = QApplication([]); window = QMainWindow(); window.show()"
Run PyQt5 designer tool to visually design UIs$ designer
Execute a PyQt5 script with GUI components$ python3 my_gui_app.py