Using python 3.9 I found the designer.exe in site-packages -> qt5_applications -> Qt -> bin👍
@daniyarauezkhan75183 жыл бұрын
thanks dude
@xuaninhnguyen49003 жыл бұрын
thanks ^^
@adhityamandlem67962 жыл бұрын
Thank you very much I was really wasting time trying multiple things This really saved my time
@vlogsentertenment12492 жыл бұрын
thnx
@RaviYadav-nj8zh2 жыл бұрын
Thanks man
@markjohnson63432 жыл бұрын
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.
@YacineZerimi2 жыл бұрын
I'm facing the same issue with the same edition 3.10.4, downgrading to 3.9.10 thnx
@tommyispog80262 жыл бұрын
Thank you! You're an absolute lifesaver
@deiaabdullah20082 жыл бұрын
@@YacineZerimi that was so helpful
@kristijankizem68772 жыл бұрын
@@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
@cnfnbcn32277 ай бұрын
That's because PyQt works only with Python 3.9 and lower
@crimsonjester7773 жыл бұрын
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!!!
@ashish20992 жыл бұрын
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.
@dahaze2kАй бұрын
Same issue here at working with virtual environment at Python3.8 Just install PyQt5Designer itsself!👍
@AnnoyingErrors415 жыл бұрын
Just open up your console and type in "designer" after the pip installs
@luiscuenta67894 жыл бұрын
Hero
@AnnoyingErrors414 жыл бұрын
@@luiscuenta6789 LoL thanks
@raheelalhamidi82624 жыл бұрын
i love u , u save me
@javiporras33964 жыл бұрын
you're the best!
@IagoMartinsJ4 жыл бұрын
thanks bro!
@thekillerbunny4 жыл бұрын
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!
@ora-ora-ora4 жыл бұрын
Could you elaborate please ?
@wabalabavxx3 жыл бұрын
8:11 TIL that you can open command prompt in a folder by typing cmd in the address bar
@brendan89153 жыл бұрын
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.
@zitrakzsingh72955 жыл бұрын
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
@silverasdf20555 жыл бұрын
Thanks so much dude!
@neoquam5 жыл бұрын
@@silverasdf2055 Awesome! Thank you :)
@quocbao60465 жыл бұрын
@@neoquam can you please explain how to install it pls?
@staticintsolo19395 жыл бұрын
thx
@zitrakzsingh72955 жыл бұрын
@@quocbao6046 if u are using vs code then type pip install (your extension)
@guireis53894 жыл бұрын
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 :)
@alessandrorotondo19062 жыл бұрын
For those who cannot still solve the problem, use: python -m PyQt5.uic.pyuic youruifile -o yourpyfile -x Thank me later :D
@SurajKumar-vu7ef2 жыл бұрын
@@alessandrorotondo1906 thank you so much man! Really appreciated ⚡
@mak448a Жыл бұрын
And for those who are using PyQT6: just write "pyuic6"
@aamano74398 ай бұрын
@@alessandrorotondo1906 Thanks dude! Also works for PyQt6 (replacing PyQt5 for PyQt6)
@hy0chan3 ай бұрын
@@alessandrorotondo1906 thank you so much!!!
@rob8764 жыл бұрын
This is the tutorial I've been waiting for - in particular 9:24
@Soljarag55 жыл бұрын
Definitely my new favorite channel that I found.... I'm going to go through your pygame tutorial series soon
@TechWithTim5 жыл бұрын
Glad to hear that!
@Dimlutube4 жыл бұрын
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.
@IAmOrion2 жыл бұрын
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 :)
@ronaldknerr9018 Жыл бұрын
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
@davidgrove16005 жыл бұрын
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.
@noobownerbob Жыл бұрын
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!
@till-louiswinters34845 жыл бұрын
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.
@hunter850705 жыл бұрын
I FUCKIIING LOVE YOOOOOOOOOUUUUUUU!!!!! THANKS ♥
@erectlocution4 жыл бұрын
I concur with Darwin Jimenez. I'm familiar with bash/zsh, but totally forgot most of what I knew of cmd.
@dabraabraka28544 жыл бұрын
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
@udayanv219 күн бұрын
These are really well done tutorials. Engaging and easy to understand. Thank you.
@SafikMaster5 жыл бұрын
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.
@freedempire4 жыл бұрын
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!
@tonyu76894 жыл бұрын
god bless you both
@santiagotorres69294 жыл бұрын
Dude, God loves you
@SteliosZouridakis4 жыл бұрын
Thank you very much! :D
@weixinfeng29994 жыл бұрын
God loves both of you soooooooo much!!!!
@Scanito3 жыл бұрын
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.
@arazguliyev90434 жыл бұрын
You are best teacher that I have never seen : - )
@jklingler48482 жыл бұрын
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
@axelanderson20302 жыл бұрын
Thanks you, ill try this
@nishamahmed70814 жыл бұрын
Man you are a hero. Very clear explanations. Step by step
@Cyrax_LK4D4 Жыл бұрын
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
@bluesdog884 жыл бұрын
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.
@NRG3194 жыл бұрын
thank you very much
@hasson23494 жыл бұрын
The designer is running but when I'm trying to run the converted .py file it throws the same error. Any idea?
@cornevanzyl58804 жыл бұрын
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
@xiokraze5 жыл бұрын
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!
@graham2874 жыл бұрын
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?
@mcjohn88383 жыл бұрын
If you can't find after pip install. You can also try look the location C:\Python39\Lib\site-packages\qt5_applications\Qt\bin
@XengShi4 жыл бұрын
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;
@amosnagar9703Ай бұрын
Thank you so much! You don't know how much you've helped me🙌
@mitchellstevens394810 ай бұрын
Thank you for this video. This will save me some time in designing UI's. Excellent job! 👍
@let0uch9292 жыл бұрын
thanks, worst tutorials I've ever seen in my life. keep this up!!!!
@TechWithTim2 жыл бұрын
You are very welcome :)
@bilalmuhammed39872 жыл бұрын
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
@jamesstone89882 жыл бұрын
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!
@simonspeckert85032 жыл бұрын
got it running on my raspberry pi 4 sweet!
@mikaelloeser976910 ай бұрын
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!
@AnandoGopalChatterjee4 жыл бұрын
Thanks for the tutorial. 'pip install ...' shows the installation path in almost every line of its output.
@thecathode3 жыл бұрын
Or use 'pip show ...'
@GeronimOCZECH5 жыл бұрын
Omg only video on youtube which actually works!!! Thank you so much
@the-name-is-max3 жыл бұрын
When I watch this playlist of videos I am learning PyQt from a cutie
@sathvikmalgikar2842 Жыл бұрын
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
@mariemmahem3426 Жыл бұрын
you are my teacher i repect you alot
@MrCheejiayuan5 жыл бұрын
Thanks tim, ur series on pyqt has really helped fleshed out some major concepts i wasn't grasping!
@vxsniffer Жыл бұрын
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.
@rozhanhoseingholizadeh9684 Жыл бұрын
thank you for sharing this tutorial, it was perfect for understanding basics of QT
@othmaneomar52223 жыл бұрын
vous expliquez tellement bien les choses que j ai fait le raprochement avec plein de sujet merci pour tout et bon courage .
@buntwogarde65834 жыл бұрын
this man basically invented python with the amount of tutorials he has
@coupdetat2263 жыл бұрын
r u dumb
@MysteriousK693 жыл бұрын
@@coupdetat226 r/whoosh
@keshavaaumritum19 ай бұрын
wow, you make the best videos. Thank you again Tim.
@bkhoo5 Жыл бұрын
Bravo, thanks for the great sharing
@abdelhaksaouli8802 Жыл бұрын
also you can view python code from : Form->View Code
@emirryalcin3 жыл бұрын
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
@stephanosc77282 жыл бұрын
Thanks for the videos, Tim.
@bu14915 жыл бұрын
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?
@marc-alexandrelaroche66325 жыл бұрын
New to Python?
@billygrahamram85352 жыл бұрын
The location of the designer.exe file for me was: virtualEnvironments\Lib\site-packages\qt5_applications\Qt\bin
@hlmrz5 жыл бұрын
You are the man, from now on, I will subscribe to you and follow every other content that you create for us :D
@ibrahimheroglu4 жыл бұрын
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?
@hoholord56994 жыл бұрын
bro ur videos r insane
@FCL002 жыл бұрын
Using python 3.9 the designer.exe is inside site-packages -> qt5_applications -> Qt -> bin
@dnetne55084 жыл бұрын
Wow this is interesting - it reminds me somewhat of Microsoft Visual Basic 2010 :'D Good ol' newbie times.
@Heddanofarsan4 жыл бұрын
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? ,)
@krultu3 жыл бұрын
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.
@marcovalentinoalvarado32904 жыл бұрын
You can actually run "pip list" to check what you have installed with pip :)
@hassanmohamed-iz2un3 жыл бұрын
you are really wonderful expert magician thaaankss
@paran0ia0002 жыл бұрын
A good way to find any package installed is to run python from cmd, import the package, then type .___file___
@sagittarius_pk4 жыл бұрын
For me, the designer was located in: *C:\Program Files (x86)\Python38-32\Lib\site-packages\pyqt5_tools\Qt\bin*
@silveraqui67044 жыл бұрын
Loving this tutorial. Thanks for all the effort you put in the videos, keep going Tim, you are an awesome teacher!
@thestas97783 жыл бұрын
thank you very match from Russia
@unlkc4 жыл бұрын
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!
@BIT_HIMANIGulati4 жыл бұрын
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.
@misanthropy1014 жыл бұрын
Life saver.
@hasson23494 жыл бұрын
The designer is running but when I'm trying to run the converted .py file it throws the same error. Any idea?
@SirDonTheThird4 жыл бұрын
0:40 the console tells you where it installed pyqt5-tools. just wanted to comment incase anyone was having trouble finding theirs.
@yasminkarasu75094 жыл бұрын
The easiest way to find it without hunting through directories is to copy the installation address when you install it on the command prompt. c:\users\username\appdata\local\programs\python\python38-32\lib and go from there. It's usually inn the bin folder under Qt
@SoundsLikeOdie3 жыл бұрын
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
@ji10462 жыл бұрын
It's not there as of now :(
@ashish20992 жыл бұрын
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
@aryanagarwal20832 жыл бұрын
thanks Tim, you are great!
@christiancarre33923 жыл бұрын
Hello Tim Thank you so much ! Kiss from France
@katayamakinen7 ай бұрын
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.
@MywifeChannel3 жыл бұрын
Designer is automatically installed with library? I mean... I simply love that tutorial!
@justoneofthepeople75854 жыл бұрын
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
@Razor13792 жыл бұрын
If you still cant find: C:\Users\*****\AppData\Local\Programs\Python\Python39\Lib\site-packages\qt5_applications\Qt\bin
@shunnoysarkar69062 жыл бұрын
You sir, are a life saver!
@punpunmuk27512 жыл бұрын
It's similar to this path. Thanks
@PaulSachers3 жыл бұрын
Every thing worked thank you so much😍💪
@majamengineering23914 жыл бұрын
I instaled the pyqt5 tools by cmd but there is no qt designer in the installation folder
@pranavnagvekar6364 жыл бұрын
thanks bro, i was finding a video that would clear my doubts, and you solved all my doubts 👍👍👍👍👍👍👍
@المتونالعلمية-ص3ض4 жыл бұрын
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.
@UCFc1XDsWoHaZmXom2KVxvuA2 жыл бұрын
Dammit tech with tim you always save my butt
@karliskazaks84223 жыл бұрын
If you didnt find it try searching this E:\Users\\AppData\Local\Programs\Python\Python39\Lib\site-packages\qt5_applications\Qt\bin
@philipyip19884 жыл бұрын
The designer application is included with Anaconda 2020-02 by default and found in anaconda3\Library\bin
@thrillbilly413 жыл бұрын
Who had their ear drums busted and about shat their pants when an obnoxious ad played
@beelzebub39204 жыл бұрын
me having 4 python versions and 5 interpreters
@idkwhatnameilikewhy22364 жыл бұрын
But only half of them work correctly xd
@beelzebub39204 жыл бұрын
@just a user tru
@emilkhojayev46453 жыл бұрын
do you know which python version I need to use? i got anaconda for python 3.8 but I can't find the designer file in the pyqt5_tools folder
@beelzebub39203 жыл бұрын
@@emilkhojayev4645 if you use windows, go to your C drive and search for Designer.exe if that doesn't find it try to install qt and repeat what I did
@kimberleymataure53563 жыл бұрын
😂😂😂
@samuelsantos89014 жыл бұрын
Thank you very much, but if you are using a linux, it's very more easy make the installation by apt rather than using pip. sudo apt-get install qttools5-dev-tools and sudo apt-get install qttools5-dev
@youssef-attai3 жыл бұрын
designer.exe is found in Lib\site-packages\qt5_applications\Qt\bin\designer.exe and if you installed the package in a venv, then venv\Lib\site-packages\qt5_applications\Qt\bin\designer.exe
@user-cc8kb4 жыл бұрын
Thank you very much. That's all I needed to get started :)
@ukaszturon88934 жыл бұрын
Im have {ERROR} in execute this : >pyuic5 [ENTER] 'pyuic5' is not recognized as an internal or external command, operable program or batch file.
@SanderBakkerMusic4 жыл бұрын
Same issue here
@zeeshanchhipa75974 жыл бұрын
yes same here
@abdellasolomon62444 жыл бұрын
same issue
@jaroquicksilver4 жыл бұрын
Go to your Python Scripts folder and type in cmd "pip install pyqt5-tools"
@amansrivastava98904 жыл бұрын
C:\Python\Python38-32\Lib\site-packages\pyqt5_tools\Qt\bin You can find it here if u are having trouble.Make sure u use your PC path.The idea is go to Qt then bin and here u will find it.
@tosinibiwoye39592 жыл бұрын
Tim i love all your videos, always looking forward to your next videos. You are an amazing teacher!
@Heddanofarsan4 жыл бұрын
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..
@mathsplug68003 жыл бұрын
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?
@danielspicer87373 жыл бұрын
i have found the pyqt5_tools folder but i dont have the installer there
@arkodeepghosh86535 жыл бұрын
preferably to find python folder just open the python terminal and run import sys sys.path it will show the location of the python folder
@luisnunez9634Ай бұрын
explains it very well
@hlim1685 жыл бұрын
Which one do you think is better? Kivy or pyqt5?
@Jak35ter5 жыл бұрын
Hey Can you tell me what Sublime Package you are running that lets you run code from the editor? Thanks! EDIT: I am also running anaconda fyi :)
@MaStErOnSlaughtGaming4 жыл бұрын
Well explained,I love your videos...
@mcasualjacques Жыл бұрын
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 )