Python UI application with Qt designer and PyQt5 #1

preview_player
Показать описание
#PyQt5 #ui #python #Pyqt

Included in video:
-Python installation
-PyQt5 installation → 1:46
-Qt designer installation
-simple application with User Interface

Tags:
Python
Python tutorial
Python for beginners
Python UI application
Python with PyQt5
Python application designer
PyQt5
Qt designer
Qt designer installation
Programming
User interface application
How to Python
Python for beginners

Рекомендации по теме
Комментарии
Автор

Thank you so much. I was looking for this functionality and not a lot of videos show this with so much ease.

sidh
Автор

This is very very good. So simple and straight forward. First person I found that managed to do exactly that!

snekjeks
Автор

Top ! it works.. Thanks for Your Pedagogical videos

davidfialaire
Автор

Yay. Exactly what I needed! Thank you, great job.

taylor-worthington
Автор

Thanks for the tutorial! Very informative and clear. :)

SupRise
Автор

It's a great help for beginner like me!!! Thanks bro

CarlosGarcia-dikn
Автор

Thank you very much man! Awesome tutorial!

michaelrussi
Автор

Hi, I have a problem. I have a class Event and one is Main script. In Event class, i have on_login method and compared id and password and return the status as per the validation. Now, in main script, Now, while clicking i want to have the status. But, not getting. Please help.

TryCatch
Автор

hi there, any idea why after 2 or 3 Designer sessions, the Designer's own [ File Edit View Tools.... ] menu bar stopped working? i uninstalled, re-installed rebooted.

mcasualjacques
Автор

Why it did not work to me.
I put test.py and test.ui in the same folder, then I ran it and came to this error
line 4, in <module> dlg = uic.loadUi("test.ui")
No such file or directory: 'test.ui'

LocTran-tvrb
Автор

you did very well job bro, it was so easy to u
nderstand

rfansari
Автор

Hello Ziga! Nice tutorial. I have created a program using your instructions and it worked fine. My problem is when I try to create an executable with pyinstaller. Apparently it does not work with the additional ui file. Tried it several ways with no success. Has anyone else had this problem? If so, how did you solve it. Thanks for any help.

tommurray
Автор

thanks boss you are truely doing a great job

bornextraintelligent
Автор

Hi there, I like your videos as they are extremely informative. I tried using PyQt5 with deigner. On running the preview within designer the output is fine. But on executing the same from py file the size of window gets reduced. Could you help with that? Thanks.

parthgoyal
Автор

I cannot find the QT designer in your file path.. I have Python 3.9 loaded

jeffgreen
Автор

Not working! Made same ui file you did. Here is the code:
app = QtWidgets.QApplication([])
dlg = uic.loadUI('main.ui')

dlg.show()
app.exec_()


error:
Traceback (most recent call last):
File "C:\PyTester\Maingrp.py", line 5, in <module>
dlg = uic.loadUI('main.ui')
AttributeError: module 'PyQt5.uic' has no attribute 'loadUI'
>>>
Running Windows 10, Python 3.6

tommurray
Автор

Thank you so much, I ask about how to add image to my windows form?

Dhamyaa
Автор

Hello, thanks for the tutorial. But I have a error

app - QtWidgets.QApplication([])
NameError: name 'app' is not defined

What could it be?

albertoeloaiza