PyQt5 Tutorial - How to Use Qt Designer

  Рет қаралды 820,446

Tech With Tim

Tech With Tim

Күн бұрын

Пікірлер: 626
@chriss3154
@chriss3154 3 жыл бұрын
Using python 3.9 I found the designer.exe in site-packages -> qt5_applications -> Qt -> bin👍
@daniyarauezkhan7518
@daniyarauezkhan7518 3 жыл бұрын
thanks dude
@xuaninhnguyen4900
@xuaninhnguyen4900 3 жыл бұрын
thanks ^^
@adhityamandlem6796
@adhityamandlem6796 2 жыл бұрын
Thank you very much I was really wasting time trying multiple things This really saved my time
@vlogsentertenment1249
@vlogsentertenment1249 2 жыл бұрын
thnx
@RaviYadav-nj8zh
@RaviYadav-nj8zh 2 жыл бұрын
Thanks man
@markjohnson6343
@markjohnson6343 2 жыл бұрын
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.
@YacineZerimi
@YacineZerimi 2 жыл бұрын
I'm facing the same issue with the same edition 3.10.4, downgrading to 3.9.10 thnx
@tommyispog8026
@tommyispog8026 2 жыл бұрын
Thank you! You're an absolute lifesaver
@deiaabdullah2008
@deiaabdullah2008 2 жыл бұрын
@@YacineZerimi that was so helpful
@kristijankizem6877
@kristijankizem6877 2 жыл бұрын
@@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
@cnfnbcn3227
@cnfnbcn3227 7 ай бұрын
That's because PyQt works only with Python 3.9 and lower
@crimsonjester777
@crimsonjester777 3 жыл бұрын
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!!!
@ashish2099
@ashish2099 2 жыл бұрын
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
@dahaze2k Ай бұрын
Same issue here at working with virtual environment at Python3.8 Just install PyQt5Designer itsself!👍
@AnnoyingErrors41
@AnnoyingErrors41 5 жыл бұрын
Just open up your console and type in "designer" after the pip installs
@luiscuenta6789
@luiscuenta6789 4 жыл бұрын
Hero
@AnnoyingErrors41
@AnnoyingErrors41 4 жыл бұрын
@@luiscuenta6789 LoL thanks
@raheelalhamidi8262
@raheelalhamidi8262 4 жыл бұрын
i love u , u save me
@javiporras3396
@javiporras3396 4 жыл бұрын
you're the best!
@IagoMartinsJ
@IagoMartinsJ 4 жыл бұрын
thanks bro!
@thekillerbunny
@thekillerbunny 4 жыл бұрын
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-ora
@ora-ora-ora 4 жыл бұрын
Could you elaborate please ?
@wabalabavxx
@wabalabavxx 3 жыл бұрын
8:11 TIL that you can open command prompt in a folder by typing cmd in the address bar
@brendan8915
@brendan8915 3 жыл бұрын
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.
@zitrakzsingh7295
@zitrakzsingh7295 5 жыл бұрын
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
@silverasdf2055
@silverasdf2055 5 жыл бұрын
Thanks so much dude!
@neoquam
@neoquam 5 жыл бұрын
@@silverasdf2055 Awesome! Thank you :)
@quocbao6046
@quocbao6046 5 жыл бұрын
@@neoquam can you please explain how to install it pls?
@staticintsolo1939
@staticintsolo1939 5 жыл бұрын
thx
@zitrakzsingh7295
@zitrakzsingh7295 5 жыл бұрын
@@quocbao6046 if u are using vs code then type pip install (your extension)
@guireis5389
@guireis5389 4 жыл бұрын
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 :)
@alessandrorotondo1906
@alessandrorotondo1906 2 жыл бұрын
For those who cannot still solve the problem, use: python -m PyQt5.uic.pyuic youruifile -o yourpyfile -x Thank me later :D
@SurajKumar-vu7ef
@SurajKumar-vu7ef 2 жыл бұрын
@@alessandrorotondo1906 thank you so much man! Really appreciated ⚡
@mak448a
@mak448a Жыл бұрын
And for those who are using PyQT6: just write "pyuic6"
@aamano7439
@aamano7439 8 ай бұрын
@@alessandrorotondo1906 Thanks dude! Also works for PyQt6 (replacing PyQt5 for PyQt6)
@hy0chan
@hy0chan 3 ай бұрын
@@alessandrorotondo1906 thank you so much!!!
@rob876
@rob876 4 жыл бұрын
This is the tutorial I've been waiting for - in particular 9:24
@Soljarag5
@Soljarag5 5 жыл бұрын
Definitely my new favorite channel that I found.... I'm going to go through your pygame tutorial series soon
@TechWithTim
@TechWithTim 5 жыл бұрын
Glad to hear that!
@Dimlutube
@Dimlutube 4 жыл бұрын
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.
@IAmOrion
@IAmOrion 2 жыл бұрын
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
@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
@davidgrove1600
@davidgrove1600 5 жыл бұрын
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
@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-louiswinters3484
@till-louiswinters3484 5 жыл бұрын
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.
@hunter85070
@hunter85070 5 жыл бұрын
I FUCKIIING LOVE YOOOOOOOOOUUUUUUU!!!!! THANKS ♥
@erectlocution
@erectlocution 4 жыл бұрын
I concur with Darwin Jimenez. I'm familiar with bash/zsh, but totally forgot most of what I knew of cmd.
@dabraabraka2854
@dabraabraka2854 4 жыл бұрын
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
@udayanv2
@udayanv2 19 күн бұрын
These are really well done tutorials. Engaging and easy to understand. Thank you.
@SafikMaster
@SafikMaster 5 жыл бұрын
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.
@freedempire
@freedempire 4 жыл бұрын
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!
@tonyu7689
@tonyu7689 4 жыл бұрын
god bless you both
@santiagotorres6929
@santiagotorres6929 4 жыл бұрын
Dude, God loves you
@SteliosZouridakis
@SteliosZouridakis 4 жыл бұрын
Thank you very much! :D
@weixinfeng2999
@weixinfeng2999 4 жыл бұрын
God loves both of you soooooooo much!!!!
@Scanito
@Scanito 3 жыл бұрын
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.
@arazguliyev9043
@arazguliyev9043 4 жыл бұрын
You are best teacher that I have never seen : - )
@jklingler4848
@jklingler4848 2 жыл бұрын
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
@axelanderson2030
@axelanderson2030 2 жыл бұрын
Thanks you, ill try this
@nishamahmed7081
@nishamahmed7081 4 жыл бұрын
Man you are a hero. Very clear explanations. Step by step
@Cyrax_LK4D4
@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
@bluesdog88
@bluesdog88 4 жыл бұрын
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.
@NRG319
@NRG319 4 жыл бұрын
thank you very much
@hasson2349
@hasson2349 4 жыл бұрын
The designer is running but when I'm trying to run the converted .py file it throws the same error. Any idea?
@cornevanzyl5880
@cornevanzyl5880 4 жыл бұрын
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
@xiokraze
@xiokraze 5 жыл бұрын
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!
@graham287
@graham287 4 жыл бұрын
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?
@mcjohn8838
@mcjohn8838 3 жыл бұрын
If you can't find after pip install. You can also try look the location C:\Python39\Lib\site-packages\qt5_applications\Qt\bin
@XengShi
@XengShi 4 жыл бұрын
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
@amosnagar9703 Ай бұрын
Thank you so much! You don't know how much you've helped me🙌
@mitchellstevens3948
@mitchellstevens3948 10 ай бұрын
Thank you for this video. This will save me some time in designing UI's. Excellent job! 👍
@let0uch929
@let0uch929 2 жыл бұрын
thanks, worst tutorials I've ever seen in my life. keep this up!!!!
@TechWithTim
@TechWithTim 2 жыл бұрын
You are very welcome :)
@bilalmuhammed3987
@bilalmuhammed3987 2 жыл бұрын
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
@jamesstone8988
@jamesstone8988 2 жыл бұрын
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!
@simonspeckert8503
@simonspeckert8503 2 жыл бұрын
got it running on my raspberry pi 4 sweet!
@mikaelloeser9769
@mikaelloeser9769 10 ай бұрын
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!
@AnandoGopalChatterjee
@AnandoGopalChatterjee 4 жыл бұрын
Thanks for the tutorial. 'pip install ...' shows the installation path in almost every line of its output.
@thecathode
@thecathode 3 жыл бұрын
Or use 'pip show ...'
@GeronimOCZECH
@GeronimOCZECH 5 жыл бұрын
Omg only video on youtube which actually works!!! Thank you so much
@the-name-is-max
@the-name-is-max 3 жыл бұрын
When I watch this playlist of videos I am learning PyQt from a cutie
@sathvikmalgikar2842
@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
@mariemmahem3426 Жыл бұрын
you are my teacher i repect you alot
@MrCheejiayuan
@MrCheejiayuan 5 жыл бұрын
Thanks tim, ur series on pyqt has really helped fleshed out some major concepts i wasn't grasping!
@vxsniffer
@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
@rozhanhoseingholizadeh9684 Жыл бұрын
thank you for sharing this tutorial, it was perfect for understanding basics of QT
@othmaneomar5222
@othmaneomar5222 3 жыл бұрын
vous expliquez tellement bien les choses que j ai fait le raprochement avec plein de sujet merci pour tout et bon courage .
@buntwogarde6583
@buntwogarde6583 4 жыл бұрын
this man basically invented python with the amount of tutorials he has
@coupdetat226
@coupdetat226 3 жыл бұрын
r u dumb
@MysteriousK69
@MysteriousK69 3 жыл бұрын
@@coupdetat226 r/whoosh
@keshavaaumritum1
@keshavaaumritum1 9 ай бұрын
wow, you make the best videos. Thank you again Tim.
@bkhoo5
@bkhoo5 Жыл бұрын
Bravo, thanks for the great sharing
@abdelhaksaouli8802
@abdelhaksaouli8802 Жыл бұрын
also you can view python code from : Form->View Code
@emirryalcin
@emirryalcin 3 жыл бұрын
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
@stephanosc7728
@stephanosc7728 2 жыл бұрын
Thanks for the videos, Tim.
@bu1491
@bu1491 5 жыл бұрын
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-alexandrelaroche6632
@marc-alexandrelaroche6632 5 жыл бұрын
New to Python?
@billygrahamram8535
@billygrahamram8535 2 жыл бұрын
The location of the designer.exe file for me was: virtualEnvironments\Lib\site-packages\qt5_applications\Qt\bin
@hlmrz
@hlmrz 5 жыл бұрын
You are the man, from now on, I will subscribe to you and follow every other content that you create for us :D
@ibrahimheroglu
@ibrahimheroglu 4 жыл бұрын
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?
@hoholord5699
@hoholord5699 4 жыл бұрын
bro ur videos r insane
@FCL00
@FCL00 2 жыл бұрын
Using python 3.9 the designer.exe is inside site-packages -> qt5_applications -> Qt -> bin
@dnetne5508
@dnetne5508 4 жыл бұрын
Wow this is interesting - it reminds me somewhat of Microsoft Visual Basic 2010 :'D Good ol' newbie times.
@Heddanofarsan
@Heddanofarsan 4 жыл бұрын
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? ,)
@krultu
@krultu 3 жыл бұрын
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.
@marcovalentinoalvarado3290
@marcovalentinoalvarado3290 4 жыл бұрын
You can actually run "pip list" to check what you have installed with pip :)
@hassanmohamed-iz2un
@hassanmohamed-iz2un 3 жыл бұрын
you are really wonderful expert magician thaaankss
@paran0ia000
@paran0ia000 2 жыл бұрын
A good way to find any package installed is to run python from cmd, import the package, then type .___file___
@sagittarius_pk
@sagittarius_pk 4 жыл бұрын
For me, the designer was located in: *C:\Program Files (x86)\Python38-32\Lib\site-packages\pyqt5_tools\Qt\bin*
@silveraqui6704
@silveraqui6704 4 жыл бұрын
Loving this tutorial. Thanks for all the effort you put in the videos, keep going Tim, you are an awesome teacher!
@thestas9778
@thestas9778 3 жыл бұрын
thank you very match from Russia
@unlkc
@unlkc 4 жыл бұрын
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_HIMANIGulati
@BIT_HIMANIGulati 4 жыл бұрын
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.
@misanthropy101
@misanthropy101 4 жыл бұрын
Life saver.
@hasson2349
@hasson2349 4 жыл бұрын
The designer is running but when I'm trying to run the converted .py file it throws the same error. Any idea?
@SirDonTheThird
@SirDonTheThird 4 жыл бұрын
0:40 the console tells you where it installed pyqt5-tools. just wanted to comment incase anyone was having trouble finding theirs.
@yasminkarasu7509
@yasminkarasu7509 4 жыл бұрын
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
@SoundsLikeOdie
@SoundsLikeOdie 3 жыл бұрын
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
@ji1046
@ji1046 2 жыл бұрын
It's not there as of now :(
@ashish2099
@ashish2099 2 жыл бұрын
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
@aryanagarwal2083
@aryanagarwal2083 2 жыл бұрын
thanks Tim, you are great!
@christiancarre3392
@christiancarre3392 3 жыл бұрын
Hello Tim Thank you so much ! Kiss from France
@katayamakinen
@katayamakinen 7 ай бұрын
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.
@MywifeChannel
@MywifeChannel 3 жыл бұрын
Designer is automatically installed with library? I mean... I simply love that tutorial!
@justoneofthepeople7585
@justoneofthepeople7585 4 жыл бұрын
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
@Razor1379
@Razor1379 2 жыл бұрын
If you still cant find: C:\Users\*****\AppData\Local\Programs\Python\Python39\Lib\site-packages\qt5_applications\Qt\bin
@shunnoysarkar6906
@shunnoysarkar6906 2 жыл бұрын
You sir, are a life saver!
@punpunmuk2751
@punpunmuk2751 2 жыл бұрын
It's similar to this path. Thanks
@PaulSachers
@PaulSachers 3 жыл бұрын
Every thing worked thank you so much😍💪
@majamengineering2391
@majamengineering2391 4 жыл бұрын
I instaled the pyqt5 tools by cmd but there is no qt designer in the installation folder
@pranavnagvekar636
@pranavnagvekar636 4 жыл бұрын
thanks bro, i was finding a video that would clear my doubts, and you solved all my doubts 👍👍👍👍👍👍👍
@المتونالعلمية-ص3ض
@المتونالعلمية-ص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.
@UCFc1XDsWoHaZmXom2KVxvuA
@UCFc1XDsWoHaZmXom2KVxvuA 2 жыл бұрын
Dammit tech with tim you always save my butt
@karliskazaks8422
@karliskazaks8422 3 жыл бұрын
If you didnt find it try searching this E:\Users\\AppData\Local\Programs\Python\Python39\Lib\site-packages\qt5_applications\Qt\bin
@philipyip1988
@philipyip1988 4 жыл бұрын
The designer application is included with Anaconda 2020-02 by default and found in anaconda3\Library\bin
@thrillbilly41
@thrillbilly41 3 жыл бұрын
Who had their ear drums busted and about shat their pants when an obnoxious ad played
@beelzebub3920
@beelzebub3920 4 жыл бұрын
me having 4 python versions and 5 interpreters
@idkwhatnameilikewhy2236
@idkwhatnameilikewhy2236 4 жыл бұрын
But only half of them work correctly xd
@beelzebub3920
@beelzebub3920 4 жыл бұрын
@just a user tru
@emilkhojayev4645
@emilkhojayev4645 3 жыл бұрын
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
@beelzebub3920
@beelzebub3920 3 жыл бұрын
@@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
@kimberleymataure5356
@kimberleymataure5356 3 жыл бұрын
😂😂😂
@samuelsantos8901
@samuelsantos8901 4 жыл бұрын
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-attai
@youssef-attai 3 жыл бұрын
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-cc8kb
@user-cc8kb 4 жыл бұрын
Thank you very much. That's all I needed to get started :)
@ukaszturon8893
@ukaszturon8893 4 жыл бұрын
Im have {ERROR} in execute this : >pyuic5 [ENTER] 'pyuic5' is not recognized as an internal or external command, operable program or batch file.
@SanderBakkerMusic
@SanderBakkerMusic 4 жыл бұрын
Same issue here
@zeeshanchhipa7597
@zeeshanchhipa7597 4 жыл бұрын
yes same here
@abdellasolomon6244
@abdellasolomon6244 4 жыл бұрын
same issue
@jaroquicksilver
@jaroquicksilver 4 жыл бұрын
Go to your Python Scripts folder and type in cmd "pip install pyqt5-tools"
@amansrivastava9890
@amansrivastava9890 4 жыл бұрын
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.
@tosinibiwoye3959
@tosinibiwoye3959 2 жыл бұрын
Tim i love all your videos, always looking forward to your next videos. You are an amazing teacher!
@Heddanofarsan
@Heddanofarsan 4 жыл бұрын
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..
@mathsplug6800
@mathsplug6800 3 жыл бұрын
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?
@danielspicer8737
@danielspicer8737 3 жыл бұрын
i have found the pyqt5_tools folder but i dont have the installer there
@arkodeepghosh8653
@arkodeepghosh8653 5 жыл бұрын
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
@luisnunez9634 Ай бұрын
explains it very well
@hlim168
@hlim168 5 жыл бұрын
Which one do you think is better? Kivy or pyqt5?
@Jak35ter
@Jak35ter 5 жыл бұрын
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 :)
@MaStErOnSlaughtGaming
@MaStErOnSlaughtGaming 4 жыл бұрын
Well explained,I love your videos...
@mcasualjacques
@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 )
PyQt5 Tutorial - MenuBar (Shortcuts, Status Bar and Triggers)
11:23
Tech With Tim
Рет қаралды 257 М.
How to Fight a Gross Man 😡
00:19
Alan Chikin Chow
Рет қаралды 18 МЛН
How to use Qt Layouts
19:18
Velcode
Рет қаралды 97 М.
PyQT5 Designer Drag and Drop GUI - PyQt5 GUI Thursdays #6
13:25
Codemy.com
Рет қаралды 164 М.
PyQt vs. PySide: Differences, Similarities, and Licenses [2022]
6:58
Code First with Hala
Рет қаралды 55 М.
Creating Your Own Qt Applications...It's Easy!
15:27
DistroTube
Рет қаралды 41 М.
Create Stunning Python GUIs in 10 Minutes With Drag & Drop
11:38
Coding Is Fun
Рет қаралды 94 М.
Convert GUI App to Real Program -  Python to exe to setup wizard
23:27
Python Simplified
Рет қаралды 548 М.
How To Make Money From Python - A Complete Guide
10:33
Tech With Tim
Рет қаралды 11 М.