https://github.com/gitchrisadams/pythonguidevelopmentpyqt
Developing Python Graphical User Interfaces(GUI) With PyQT Library
https://github.com/gitchrisadams/pythonguidevelopmentpyqt
gui pyqt6 python python3 qt6
Last synced: about 2 months ago
JSON representation
Developing Python Graphical User Interfaces(GUI) With PyQT Library
- Host: GitHub
- URL: https://github.com/gitchrisadams/pythonguidevelopmentpyqt
- Owner: gitchrisadams
- Created: 2025-08-07T12:48:13.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-08-07T14:28:06.000Z (11 months ago)
- Last Synced: 2025-08-07T14:45:05.133Z (11 months ago)
- Topics: gui, pyqt6, python, python3, qt6
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Description
This Repo shows various ways to create Python Graphical User Interfaces(GUI) using tools such as PyQT6.
There is a mix of using Python code as well as using a graphical tool called pyQT Designer.
## References
https://www.udemy.com/course/python-gui-development-with-pyqt6
This Udemy course was used to go through many of the examples in this repo.
# Python and pyQT6 Version:
Be very mindful of the version of Python and the version of pyQT you are using.
Refer to: https://wiki.qt.io/Qt_for_Python for version of python to PyQT6 compatibility.
As of 8/7/2025 version of Python 3.11.9 is compatible with QT 6.6.9.1
## Installing pyQT6
Create a virtual env and type:
`pip install PyQt6`
## Installing tools to use the graphical gui design tool "designer"
https://pypi.org/project/pyqt6-tools/
`pip install pyqt6-tools`
## Sample app made in this repo
### Calculator app
