I've been searching for how to make my Designer work for a month: googling weird advices, reading overcomplicated articles, digging into documentation... And you has solved my problem in a half an hour. Thanks!!!
Using Python 3.10.4, I found that PyQt5-tools had an error when installing. PyQt5 was fine. Nothing seemed to resolve this until I removed Python and installed 3.9.10 which allowed me to install both PyQt5 and PyQt5-tools. The Designer and pyuic5 both worked perfectly. Great tutorial! Thank you Tim.
@@deiaabdullah2008 I've lost 40 minutes on this problem while watching first video in the series... Thank you a lot for posting this. P.S. 3.9.10 isn't available any more but it works on 3.9.13 which is the last version of 3.9
Initially I couldn't find pyqt5-tools inside scripts. Using pycharm with virtual environment made using virtualenv, python version 3.10.5. pyqt5-tools didn't get installed in my system for some reason. So, "pip install PyQt5Designer" within the same working directory as my virtual environment worked for me. I can now use designer.exe. As always, I'm grateful to tim for his clear explainations and free tutorials. God bless you brother, keep up the good work. You're definitely making this world a better place.
Earned my subscribe bro. I'm a big ole Windows nerd. I use hotkeys for everything, I know all of the little tricks, I customize it to hell. In short, I use Windows very efficiently.... but man, I never knew you could open a cmd prompt by typing cmd in the address bar... You added another tool to my tool belt.... Oh, and you're also very smart, you teach in an effective way, and third compliment. Thanks.
This helped me a lot to get started, however I learned later that this is not the best way to program a more complicated program, as each time you edit the GUI, you rebuild the code, and have to code everything again (or just copy and paste). I found much more efficient to create a main program that loads the .ui file that's generated. It means you can make any changes to the GUI in QTDesigner and your code will not be affected. I used the function loadUI for the uic package in PyQt5. Just in case anyone else gets stuck there! Thanks for the tutorial, it def helped me to get started!
Just started a python project that needed a GUI - having never done this much in python (I've done the odd py project and used circuitpython a fair bit but not as complex as my current project) -- this video playlist has been a godsend! Thank you so much for this pyqt5 series playlist / tutorial :)
Hey Tom, I recently started following your tutorial videos on PyQt5. Let me tell you: Thanks so much for the GREAT work. By far, you are the best! Keep it going.
Same. All the years Tim has taught me some incredible things, but this one I doubt even my senior software dev even knows lol. Fucking supreme stuff right there. Man.
Hey Tim. Great tutorials. I just wanted to share an update. For those looking for the Designer.exe file, mine was located in ...Lib/sitepackages/qt5_applications/Qt/bin
I finally got QtDesigner installed on my Samsung Chromebook Plus v2. To start out with, I installed all of QtCreator and Qt5. I ended up with a /usr/bin/designer that didn't work. It wanted something and I couldn't figure out what I installed QtDesigner for Qt 4, and that one worked. I found out that /usr/bin/designer was a reference. I changed my .desktop file for the "Qt 4 Designer" (find | grep) to "Qt Designer" and changed its command to "designer -qt=5". This means that the Qt4 version exists, but for whatever reason the new one works because of that. Maybe this will help someone. PLEASE KEEP MAKING THESE VIDEOS! PyQt is terribly under-documented.
Finding the site-package directory is easy. The pip install shows the full path of the /newly/ installed modules, so just read it from the screen as it shows at 0:24 or 0:40
For those who are experiencing this error: "'pyuic5' is not recognized as an internal or external command, operable program or batch file. " This is because your pyuic5.exe is not in PATH. Probably your pyhton script folder is not in PATH, even though you put the option "add to Path" when you were installing Python. This happened to me, my Python folders are scattered around and I don't even know why. There are two methods of resolving: 01 - (What I did) The folder he shows that has all the files that pip installed, I added to PATH. (So much so that when you install a new library, you will no longer see that warning suggesting to add it to the path as the entire folder is already there.) There are already tutorials on the internet, it's very simple 02 - Instead of typing "pyuic5", you write the location where "pyuic5.exe" is. It's more complicated, but it also works. Like if I helped you :)
Another way of finding where Python is installed on Windows is just typing the command in CMD: "where python" and it will show the installed locations on your PC!
I was 10 minutes away from sacking Python after hours of trawling far too many annoying tutorials and reviews trying to find a decent GUI RAD to use. Your tutorial on installing and running Pyqt Designer saved the day. Excellent. Thanks. Not a TShirt guy these days but do you have a Patreon page or similar?
For anyone getting this error when trying to open the deigner: "this application failed to start because no qt platform plugin could be initialized" I solved it by going into the plugins folder and copying a folder called "platforms", I then pasted the folder where the designer.exe is located.
thank you, really helpful. for those who have the same problem: copy the whole folder of 'plugins' under folder pyqt5_tools\Qt, then paste it to folder pyqt5_tools\Qt\bin, replace, done!
Quick way to find your pyqt5-tools install location is to run the install command again. It'll state the package is already installed and provide the file path location!
C:\Python35\python"' is not recognized as an internal or external command, operable program or batch file. Hocam bu problemi alıyorum, yardımcı olabilir misiniz?
If you dont find designer in the path mentioned in the video, it will be here in this path. (I use python 3.8) C:\Program Files\Python38\Lib\site-packages\qt5_applications\Qt\bin
Man, I gotta say something... *THANK YOU SO FREAKING MUCH!* I've been struggling for like 2 days, trying to make an stupid button work, you're a life saver! Btw I was just loading the .ui file by an incorrect way, lol.
When you have no idea where you can find your python folder, open cmd/terminal and write "where python". That will show you the install path on your computer.
If designer.exe comes up with an error try this: Go to => Python38>lib>site-packages>PyQt5>Qt>plugins In plugins copy platform folder After that go to Python38>lib>site-packages>PyQt5_tools>Qt>bin paste folder here . Do copy and replace.
Thank you, great tuto. Just one thing, instead of explaining, how to search for hours where is python.exe on your computer, just open the console and type "where python" , that's it!
if you could please i have this problem, could you help me 'pyuic5.bat' is not recognized as an internal or external command, operable program or batch file. i am using pycharm
Location of the DESIGNER application for ppl using the latest Python Version in April 2023 ----------------------------> C:\Python\Python310\Lib\site-packages\qt5_applications\Qt\bin
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. ... Fixed I think ... I uninstalled Qt and deleted the Qt folders in %appdata% - I think Qt designer was stuck in full screen mode and when it's in full screen mode the drop-down menus fail to display (or try to display outside the screen )
Thank you for your video-tutorial! I'm just a newbie in programming and afraid all of these codes because I'm an digital artist, not programmer x) But your video really understandable for me! Thank you! ^^
Yes but that is a quite heavy program and this is luckily not something from Microsoft. Or are you saying there was ever a minimalistic utilitarian Microsoft program without a million popups and 2000 dependencies? ,)
I recommend PySide (now 6, for Qt6), it is very alike PyQt, but more up to date, and based on LGPL license - you don't need to publish source for your commercial code... BTW, Qt Designer comes as part of PySide, with no additional library to install.
first of all Type this code pip install pyqt5-tools and go to this directory > C:\Users\User_name\AppData\Local\Programs\Python\Python38-32\Scripts\pyqt5designer.exe;
when I enter pyuic5 in cmd the following is returned: from PyQt5 import QtCore Import Error: DLL load failed while importing QtCore: The specified module could not be found.
I had to work around pyqt5-tools not installing: py -m pip install pyqt5-sip py -m pip install pyqt5 py -m pip install pyqt5designer FYI for anyone else running into this issue
Works on my mac. Thank you I cannot wait to give my nice little gui with some functionality (that I made some day ago). *Hours later*: Ahh.. that is done in the signal/slot editor XD. I was thinking what the heck.. loose ends everywhere..
Hello Mr I need help. I create a project with Qt designer , but I didn't know how to exporte thé project to be a executed file ". Exe" Please I need help 😭😭
need help I just installed PyQt5 and PyQt5-tools no problem, but when I run the Qt Designer it gives an error saying "The code execution cannot proceed because MSVCP140.dll was not found. Reinstalling the program may fix this problem."
Hello, I am getting the following error for pyuic5: "ImportError: DLL load failed while importing QtCore: The specified procedure could not be found". Can anyone help me with solving this?
For those using pyCharm on windows10. You can find QT designer after you have installed it by looking for "designer.exe" using the windows search feature(next to the windows icon). OR in your PyCharm project explorer: YourProjectPath\venv\Scripts\designer.exe
Using pycharm on win10, virtual environment made using virtualenv, python 3.10.5, can't find the designer.exe anywhere on my system, yes I've installed pyqt5-tools
After installing the designer using pip. To open the Designer, go to C: => Program Files => python38 => Scripts double click pyqt5designer or as mentioned by other, in cmd pyqt5designer and Enter.
i don't understand all the gibberish attached to downloading qt designer. am i still able to write programs that will be my own? do i have to share them?
if u guys get error like :No Qt platform plugin could be initialized when u opened the desginer.exe, do these steps: 1- go /pyQT5 -/QT /PLUGINS and then copy the "platforms" and then go back 2- go /pyqt5_tools-/QT/BIN/ AND then paste the folder and the click the designer.exe :) have fun!
hey it works but how? i mean platform folder is already there but after copy-pasting it from plugins to bin , it works!! would you please tell the reason.
Using python 3.9 I found the designer.exe in site-packages -> qt5_applications -> Qt -> bin👍
thanks dude
thanks ^^
Thank you very much
I was really wasting time trying multiple things
This really saved my time
thnx
Thanks man
I've been searching for how to make my Designer work for a month: googling weird advices, reading overcomplicated articles, digging into documentation... And you has solved my problem in a half an hour. Thanks!!!
Using Python 3.10.4, I found that PyQt5-tools had an error when installing. PyQt5 was fine. Nothing seemed to resolve this until I removed Python and installed 3.9.10 which allowed me to install both PyQt5 and PyQt5-tools. The Designer and pyuic5 both worked perfectly.
Great tutorial! Thank you Tim.
I'm facing the same issue with the same edition 3.10.4, downgrading to 3.9.10 thnx
Thank you! You're an absolute lifesaver
@@YacineZerimi that was so helpful
@@deiaabdullah2008 I've lost 40 minutes on this problem while watching first video in the series... Thank you a lot for posting this.
P.S. 3.9.10 isn't available any more but it works on 3.9.13 which is the last version of 3.9
That's because PyQt works only with Python 3.9 and lower
Initially I couldn't find pyqt5-tools inside scripts. Using pycharm with virtual environment made using virtualenv, python version 3.10.5. pyqt5-tools didn't get installed in my system for some reason. So, "pip install PyQt5Designer" within the same working directory as my virtual environment worked for me. I can now use designer.exe. As always, I'm grateful to tim for his clear explainations and free tutorials. God bless you brother, keep up the good work. You're definitely making this world a better place.
Same issue here at working with virtual environment at Python3.8
Just install PyQt5Designer itsself!👍
Just open up your console and type in "designer" after the pip installs
Hero
@@luiscuenta6789 LoL thanks
i love u , u save me
you're the best!
thanks bro!
If u cant find the designer in pyqt5-tools
then Qt then bin folder
If Qt folder is not shown then install "Qt for Python' extension on vscode etc
Thanks so much dude!
@@silverasdf2055 Awesome! Thank you :)
@@neoquam can you please explain how to install it pls?
thx
@@quocbao6046 if u are using vs code then type
pip install (your extension)
Earned my subscribe bro. I'm a big ole Windows nerd. I use hotkeys for everything, I know all of the little tricks, I customize it to hell. In short, I use Windows very efficiently.... but man, I never knew you could open a cmd prompt by typing cmd in the address bar... You added another tool to my tool belt.... Oh, and you're also very smart, you teach in an effective way, and third compliment. Thanks.
Definitely my new favorite channel that I found.... I'm going to go through your pygame tutorial series soon
Glad to hear that!
This helped me a lot to get started, however I learned later that this is not the best way to program a more complicated program, as each time you edit the GUI, you rebuild the code, and have to code everything again (or just copy and paste). I found much more efficient to create a main program that loads the .ui file that's generated. It means you can make any changes to the GUI in QTDesigner and your code will not be affected.
I used the function loadUI for the uic package in PyQt5.
Just in case anyone else gets stuck there! Thanks for the tutorial, it def helped me to get started!
Could you elaborate please ?
Just started a python project that needed a GUI - having never done this much in python (I've done the odd py project and used circuitpython a fair bit but not as complex as my current project) -- this video playlist has been a godsend! Thank you so much for this pyqt5 series playlist / tutorial :)
Hey Tom, I recently started following your tutorial videos on PyQt5. Let me tell you: Thanks so much for the GREAT work. By far, you are the best! Keep it going.
8:11 TIL that you can open command prompt in a folder by typing cmd in the address bar
Same. All the years Tim has taught me some incredible things, but this one I doubt even my senior software dev even knows lol. Fucking supreme stuff right there. Man.
This is the tutorial I've been waiting for - in particular 9:24
Hey Tim. Great tutorials. I just wanted to share an update. For those looking for the Designer.exe file, mine was located in ...Lib/sitepackages/qt5_applications/Qt/bin
I finally got QtDesigner installed on my Samsung Chromebook Plus v2. To start out with, I installed all of QtCreator and Qt5. I ended up with a /usr/bin/designer that didn't work. It wanted something and I couldn't figure out what
I installed QtDesigner for Qt 4, and that one worked. I found out that /usr/bin/designer was a reference.
I changed my .desktop file for the "Qt 4 Designer" (find | grep) to "Qt Designer" and changed its command to "designer -qt=5". This means that the Qt4 version exists, but for whatever reason the new one works because of that.
Maybe this will help someone.
PLEASE KEEP MAKING THESE VIDEOS! PyQt is terribly under-documented.
Finding the site-package directory is easy. The pip install shows the full path of the /newly/ installed modules, so just read it from the screen as it shows at 0:24 or 0:40
These are really well done tutorials. Engaging and easy to understand. Thank you.
Thanks tim, ur series on pyqt has really helped fleshed out some major concepts i wasn't grasping!
Thank you for this video. This will save me some time in designing UI's. Excellent job! 👍
For those who are experiencing this error:
"'pyuic5' is not recognized as an internal or external command,
operable program or batch file. "
This is because your pyuic5.exe is not in PATH. Probably your pyhton script folder is not in PATH, even though you put the option "add to Path" when you were installing Python.
This happened to me, my Python folders are scattered around and I don't even know why. There are two methods of resolving:
01 - (What I did) The folder he shows that has all the files that pip installed, I added to PATH. (So much so that when you install a new library, you will no longer see that warning suggesting to add it to the path as the entire folder is already there.)
There are already tutorials on the internet, it's very simple
02 - Instead of typing "pyuic5", you write the location where "pyuic5.exe" is. It's more complicated, but it also works.
Like if I helped you :)
For those who cannot still solve the problem, use:
python -m PyQt5.uic.pyuic youruifile -o yourpyfile -x
Thank me later :D
@@alessandrorotondo1906 thank you so much man! Really appreciated ⚡
And for those who are using PyQT6: just write "pyuic6"
@@alessandrorotondo1906 Thanks dude! Also works for PyQt6 (replacing PyQt5 for PyQt6)
@@alessandrorotondo1906 thank you so much!!!
thank you so much i'm at #5 of this series and it has been very simple and easy to follow and understand. :)
really needed something like this
Thank you so much! You don't know how much you've helped me🙌
Another way of finding where Python is installed on Windows is just typing the command in CMD: "where python" and it will show the installed locations on your PC!
Loving this tutorial. Thanks for all the effort you put in the videos, keep going Tim, you are an awesome teacher!
You are best teacher that I have never seen : - )
I was 10 minutes away from sacking Python after hours of trawling far too many annoying tutorials and reviews trying to find a decent GUI RAD to use. Your tutorial on installing and running Pyqt Designer saved the day. Excellent. Thanks. Not a TShirt guy these days but do you have a Patreon page or similar?
For anyone getting this error when trying to open the deigner: "this application failed to start because no qt platform plugin could be initialized" I solved it by going into the plugins folder and copying a folder called "platforms", I then pasted the folder where the designer.exe is located.
thank you, really helpful. for those who have the same problem: copy the whole folder of 'plugins' under folder pyqt5_tools\Qt, then paste it to folder pyqt5_tools\Qt\bin, replace, done!
god bless you both
Dude, God loves you
Thank you very much! :D
God loves both of you soooooooo much!!!!
Man you are a hero. Very clear explanations. Step by step
Quick way to find your pyqt5-tools install location is to run the install command again. It'll state the package is already installed and provide the file path location!
If you can't find after pip install. You can also try look the location C:\Python39\Lib\site-packages\qt5_applications\Qt\bin
You are the man, from now on, I will subscribe to you and follow every other content that you create for us :D
C:\Python35\python"' is not recognized as an internal or external command,
operable program or batch file.
Hocam bu problemi alıyorum, yardımcı olabilir misiniz?
If you dont find designer in the path mentioned in the video, it will be here in this path. (I use python 3.8)
C:\Program Files\Python38\Lib\site-packages\qt5_applications\Qt\bin
vous expliquez tellement bien les choses que j ai fait le raprochement avec plein de sujet merci pour tout et bon courage .
this man basically invented python with the amount of tutorials he has
r u dumb
@@coupdetat226 r/whoosh
Im have {ERROR} in execute this :
>pyuic5 [ENTER]
'pyuic5' is not recognized as an internal or external command,
operable program or batch file.
Same issue here
yes same here
same issue
Go to your Python Scripts folder and type in cmd "pip install pyqt5-tools"
Man, I gotta say something...
*THANK YOU SO FREAKING MUCH!*
I've been struggling for like 2 days, trying to make an stupid button work, you're a life saver!
Btw I was just loading the .ui file by an incorrect way, lol.
Omg only video on youtube which actually works!!! Thank you so much
thanks, worst tutorials I've ever seen in my life. keep this up!!!!
You are very welcome :)
@9:06 , i am unable to convert the .UI file to .py file.
Cmd is showing errors.
Please help me out.
same
@@michelletay9664 did you find yourself the solution
How do u link the function to the statusbar as he said on 10:39?
When you have no idea where you can find your python folder, open cmd/terminal and write "where python". That will show you the install path on your computer.
I FUCKIIING LOVE YOOOOOOOOOUUUUUUU!!!!! THANKS ♥
I concur with Darwin Jimenez. I'm familiar with bash/zsh, but totally forgot most of what I knew of cmd.
thank you for sharing this tutorial, it was perfect for understanding basics of QT
If designer.exe comes up with an error try this:
Go to => Python38>lib>site-packages>PyQt5>Qt>plugins
In plugins copy platform folder
After that go to Python38>lib>site-packages>PyQt5_tools>Qt>bin
paste folder here . Do copy and replace.
thank you very much
The designer is running but when I'm trying to run the converted .py file it throws the same error. Any idea?
i have found the pyqt5_tools folder but i dont have the installer there
wow, you make the best videos. Thank you again Tim.
Thank you, great tuto. Just one thing, instead of explaining, how to search for hours where is python.exe on your computer, just open the console and type "where python" , that's it!
Bravo, thanks for the great sharing
Tim i love all your videos, always looking forward to your next videos. You are an amazing teacher!
I love how short and straight to the point your videos are. Question: where should I start if I'm new to all of this?
New to Python?
thanks bro, i was finding a video that would clear my doubts, and you solved all my doubts 👍👍👍👍👍👍👍
Thanks for the tutorial.
'pip install ...' shows the installation path in almost every line of its output.
Or use 'pip show ...'
if you could please i have this problem, could you help me
'pyuic5.bat' is not recognized as an internal or external command,
operable program or batch file.
i am using pycharm
Thanks for the videos, Tim.
I instaled the pyqt5 tools by cmd but there is no qt designer in the installation folder
Location of the DESIGNER application for ppl using the latest Python Version in April 2023 ----------------------------> C:\Python\Python310\Lib\site-packages\qt5_applications\Qt\bin
Import uic and just load the .ui file... it's much simpler and will save you SO much time when you want to change something
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. ... Fixed I think ... I uninstalled Qt and deleted the Qt folders in %appdata% - I think Qt designer was stuck in full screen mode and when it's in full screen mode the drop-down menus fail to display (or try to display outside the screen )
Thank you for your video-tutorial! I'm just a newbie in programming and afraid all of these codes because I'm an digital artist, not programmer x) But your video really understandable for me! Thank you! ^^
Every thing worked thank you so much😍💪
Wow this is interesting - it reminds me somewhat of Microsoft Visual Basic 2010 :'D
Good ol' newbie times.
Yes but that is a quite heavy program and this is luckily not something from Microsoft. Or are you saying there was ever a minimalistic utilitarian Microsoft program without a million popups and 2000 dependencies? ,)
Awesome tutorial! Your videos are so easy to follow and very helpful!
When I watch this playlist of videos I am learning PyQt from a cutie
I recommend PySide (now 6, for Qt6), it is very alike PyQt, but more up to date, and based on LGPL license - you don't need to publish source for your commercial code... BTW, Qt Designer comes as part of PySide, with no additional library to install.
After modifying the python file with custom code, how can you open the .py file back in qtDesigner
I will tell you what sir, you earned a like subscribe, and turn on notification bell. You are a great teacher!
got it running on my raspberry pi 4
sweet!
first of all Type this code
pip install pyqt5-tools
and go to this directory >
C:\Users\User_name\AppData\Local\Programs\Python\Python38-32\Scripts\pyqt5designer.exe;
Hello Tim
Thank you so much !
Kiss from France
Why when I`m trying to run the program(the converted ui file-"test.py") it`s throws an error says "This application fails to stat..."
Provide more info to try to resolve the issue
Hello, I have followed your exactly as shown.
But when running in Jupyter notebook, the Mainwindow appears but is "Not Responding".
What can I do?
1:28 save time searching where python is installed, open a cmd and type -> where python . This will show you python's path environment variable.
Thank you very much. That's all I needed to get started :)
thanks Tim, you are great!
bro ur videos r insane
you are my teacher i repect you alot
Designer is automatically installed with library? I mean... I simply love that tutorial!
when I enter pyuic5 in cmd the following is returned: from PyQt5 import QtCore
Import Error: DLL load failed while importing QtCore: The specified module could not be found.
I had to work around pyqt5-tools not installing:
py -m pip install pyqt5-sip
py -m pip install pyqt5
py -m pip install pyqt5designer
FYI for anyone else running into this issue
Thanks you, ill try this
0:40 the console tells you where it installed pyqt5-tools. just wanted to comment incase anyone was having trouble finding theirs.
Works on my mac. Thank you I cannot wait to give my nice little gui with some functionality (that I made some day ago). *Hours later*: Ahh.. that is done in the signal/slot editor XD. I was thinking what the heck.. loose ends everywhere..
Hello Mr
I need help. I create a project with Qt designer , but I didn't know how to exporte thé project to be a executed file ". Exe"
Please I need help 😭😭
need help I just installed PyQt5 and PyQt5-tools no problem, but when I run the Qt Designer it gives an error saying "The code execution cannot proceed because MSVCP140.dll was not found. Reinstalling the program may fix this problem."
HELP!! pip install pyqt5-tools is not working on MacOs, python 3.8 What am I gonna do to install Qtdesigner? Thank you
i am using mac, but it seems that the qt designer doesn't come with pyqt5-tools package. does anyone has any idea on how to install the tool?
Hello, I am getting the following error for pyuic5: "ImportError: DLL load failed while importing QtCore: The specified procedure could not be found".
Can anyone help me with solving this?
It happened to me as well, did you solved it?
For those using pyCharm on windows10. You can find QT designer after you have installed it by looking for "designer.exe" using the windows search feature(next to the windows icon).
OR
in your PyCharm project explorer:
YourProjectPath\venv\Scripts\designer.exe
It's not there as of now :(
Using pycharm on win10, virtual environment made using virtualenv, python 3.10.5, can't find the designer.exe anywhere on my system, yes I've installed pyqt5-tools
As of writing this: not compatible with python 3.10... Save yourself a lot of headache and use 3.9
Thanks for the tutorials Tim!
After installing the designer using pip. To open the Designer, go to C: => Program Files => python38 => Scripts double click pyqt5designer
or as mentioned by other, in cmd pyqt5designer and Enter.
Is there no way to update the converted py file that was previously a ui file, after I edit things in Qt designer?
i don't understand all the gibberish attached to downloading qt designer.
am i still able to write programs that will be my own? do i have to share them?
I want more video. Waiting ...
Please teach all think what you have...
Thanks,for your video
if u guys get error like :No Qt platform plugin could be initialized when u opened the desginer.exe, do these steps:
1- go /pyQT5 -/QT /PLUGINS and then copy the "platforms" and then go back
2- go /pyqt5_tools-/QT/BIN/ AND then paste the folder
and the click the designer.exe :)
have fun!
hey it works but how?
i mean platform folder is already there but after copy-pasting it from plugins to bin , it works!!
would you please tell the reason.
Life saver.
The designer is running but when I'm trying to run the converted .py file it throws the same error. Any idea?
you are really wonderful expert magician thaaankss
When I install pyqt5 in my pip then I go through the folder to see it but I didn't see the file pyqt5 designer .exe? why
Dammit tech with tim you always save my butt
So what if you wanna change the .UI file and regenerate that Python code? You wouldn't want to modify it for that reason.
Well explained,I love your videos...
Hi help here. how can i upload files like a form where you add your CV or upload any type of file?
when i run it i have this Error "ModuleNotFoundError: No module named 'QSS_Resources_rc'" and i dont know what to do ?? pls someone can help
if didn't find designer.exe, search designer on C: then right click to first result, after that click open file location. it worked for me