PyQt5 Tutorial - How to Use Qt Designer

Поделиться
HTML-код
  • Опубликовано: 29 янв 2025

Комментарии • 628

  • @chriss3154
    @chriss3154 3 года назад +399

    Using python 3.9 I found the designer.exe in site-packages -> qt5_applications -> Qt -> bin👍

  • @crimsonjester777
    @crimsonjester777 3 года назад +11

    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!!!

  • @markjohnson6343
    @markjohnson6343 2 года назад +25

    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 года назад +1

      I'm facing the same issue with the same edition 3.10.4, downgrading to 3.9.10 thnx

    • @tommyispog8026
      @tommyispog8026 2 года назад +2

      Thank you! You're an absolute lifesaver

    • @deiaabdullah2008
      @deiaabdullah2008 2 года назад +1

      @@YacineZerimi that was so helpful

    • @Immortal-i6i
      @Immortal-i6i 2 года назад +1

      @@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 9 месяцев назад

      That's because PyQt works only with Python 3.9 and lower

  • @ashish2099
    @ashish2099 2 года назад +5

    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 3 месяца назад

      Same issue here at working with virtual environment at Python3.8
      Just install PyQt5Designer itsself!👍

  • @Soljarag5
    @Soljarag5 5 лет назад +9

    Definitely my new favorite channel that I found.... I'm going to go through your pygame tutorial series soon

  • @IAmOrion
    @IAmOrion 2 года назад +4

    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 :)

  • @Scanito
    @Scanito 3 года назад +1

    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.

  • @AnnoyingErrors41
    @AnnoyingErrors41 5 лет назад +348

    Just open up your console and type in "designer" after the pip installs

  • @rob876
    @rob876 5 лет назад +5

    This is the tutorial I've been waiting for - in particular 9:24

  • @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.

  • @thekillerbunny
    @thekillerbunny 5 лет назад +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 4 года назад +24

    8:11 TIL that you can open command prompt in a folder by typing cmd in the address bar

    • @brendan8915
      @brendan8915 3 года назад +2

      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.

  • @udayanv2
    @udayanv2 2 месяца назад

    These are really well done tutorials. Engaging and easy to understand. Thank you.

  • @ronaldknerr9018
    @ronaldknerr9018 Год назад +3

    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.

  • @zitrakzsingh7295
    @zitrakzsingh7295 5 лет назад +234

    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 лет назад +3

      Thanks so much dude!

    • @neoquam
      @neoquam 5 лет назад

      @@silverasdf2055 Awesome! Thank you :)

    • @quocbao6046
      @quocbao6046 5 лет назад +1

      @@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)

  • @sathvikmalgikar2842
    @sathvikmalgikar2842 2 года назад +1

    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

  • @MrCheejiayuan
    @MrCheejiayuan 5 лет назад +1

    Thanks tim, ur series on pyqt has really helped fleshed out some major concepts i wasn't grasping!

  • @mitchellstevens3948
    @mitchellstevens3948 Год назад

    Thank you for this video. This will save me some time in designing UI's. Excellent job! 👍

  • @guireis5389
    @guireis5389 4 года назад +35

    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 года назад +25

      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 года назад +2

      @@alessandrorotondo1906 thank you so much man! Really appreciated ⚡

    • @mak448a
      @mak448a Год назад

      And for those who are using PyQT6: just write "pyuic6"

    • @aamano7439
      @aamano7439 10 месяцев назад +1

      @@alessandrorotondo1906 Thanks dude! Also works for PyQt6 (replacing PyQt5 for PyQt6)

    • @hy0chan
      @hy0chan 5 месяцев назад

      @@alessandrorotondo1906 thank you so much!!!

  • @nishamahmed7081
    @nishamahmed7081 4 года назад +1

    Man you are a hero. Very clear explanations. Step by step

  • @arazguliyev9043
    @arazguliyev9043 4 года назад

    You are best teacher that I have never seen : - )

  • @jklingler4848
    @jklingler4848 2 года назад +8

    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

  • @amosnagar9703
    @amosnagar9703 3 месяца назад

    Thank you so much! You don't know how much you've helped me🙌

  • @graham287
    @graham287 4 года назад +3

    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?

  • @othmaneomar5222
    @othmaneomar5222 4 года назад

    vous expliquez tellement bien les choses que j ai fait le raprochement avec plein de sujet merci pour tout et bon courage .

  • @SafikMaster
    @SafikMaster 5 лет назад +41

    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 года назад +20

      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 года назад +2

      god bless you both

    • @santiagotorres6929
      @santiagotorres6929 4 года назад +1

      Dude, God loves you

    • @SteliosZouridakis
      @SteliosZouridakis 4 года назад +1

      Thank you very much! :D

    • @weixinfeng2999
      @weixinfeng2999 4 года назад +1

      God loves both of you soooooooo much!!!!

  • @dabraabraka2854
    @dabraabraka2854 4 года назад +2

    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

  • @GeronimOCZECH
    @GeronimOCZECH 5 лет назад

    Omg only video on youtube which actually works!!! Thank you so much

  • @silveraqui6704
    @silveraqui6704 5 лет назад +6

    Loving this tutorial. Thanks for all the effort you put in the videos, keep going Tim, you are an awesome teacher!

  • @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?

  • @till-louiswinters3484
    @till-louiswinters3484 5 лет назад +46

    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 лет назад +5

      I FUCKIIING LOVE YOOOOOOOOOUUUUUUU!!!!! THANKS ♥

    • @erectlocution
      @erectlocution 5 лет назад

      I concur with Darwin Jimenez. I'm familiar with bash/zsh, but totally forgot most of what I knew of cmd.

  • @buntwogarde6583
    @buntwogarde6583 4 года назад +3

    this man basically invented python with the amount of tutorials he has

  • @pranavnagvekar636
    @pranavnagvekar636 4 года назад

    thanks bro, i was finding a video that would clear my doubts, and you solved all my doubts 👍👍👍👍👍👍👍

  • @bu1491
    @bu1491 5 лет назад +1

    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?

  • @cornevanzyl5880
    @cornevanzyl5880 5 лет назад +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

  • @noobownerbob
    @noobownerbob 2 года назад +2

    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!

  • @tosinibiwoye3959
    @tosinibiwoye3959 2 года назад

    Tim i love all your videos, always looking forward to your next videos. You are an amazing teacher!

  • @keshavaaumritum1
    @keshavaaumritum1 11 месяцев назад

    wow, you make the best videos. Thank you again Tim.

  • @rozhanhoseingholizadeh9684
    @rozhanhoseingholizadeh9684 Год назад

    thank you for sharing this tutorial, it was perfect for understanding basics of QT

  • @let0uch929
    @let0uch929 2 года назад +1

    thanks, worst tutorials I've ever seen in my life. keep this up!!!!

  • @bkhoo5
    @bkhoo5 Год назад +1

    Bravo, thanks for the great sharing

  • @dnetne5508
    @dnetne5508 4 года назад +3

    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? ,)

  • @the-name-is-max
    @the-name-is-max 4 года назад +2

    When I watch this playlist of videos I am learning PyQt from a cutie

  • @mariemmahem3426
    @mariemmahem3426 Год назад

    you are my teacher i repect you alot

  • @scottweiss4443
    @scottweiss4443 4 года назад +1

    Awesome tutorial! Your videos are so easy to follow and very helpful!

  • @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 ...'

  • @simonspeckert8503
    @simonspeckert8503 3 года назад +1

    got it running on my raspberry pi 4
    sweet!

  • @PaulSachers
    @PaulSachers 4 года назад +1

    Every thing worked thank you so much😍💪

  • @gyaneshupadhyaya1447
    @gyaneshupadhyaya1447 4 года назад +1

    @9:06 , i am unable to convert the .UI file to .py file.
    Cmd is showing errors.
    Please help me out.

  • @hoholord5699
    @hoholord5699 4 года назад

    bro ur videos r insane

  • @ukaszturon8893
    @ukaszturon8893 4 года назад +7

    Im have {ERROR} in execute this :
    >pyuic5 [ENTER]
    'pyuic5' is not recognized as an internal or external command,
    operable program or batch file.

  • @stephanosc7728
    @stephanosc7728 2 года назад

    Thanks for the videos, Tim.

  • @mikaelloeser9769
    @mikaelloeser9769 Год назад

    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!

  • @thrillbilly41
    @thrillbilly41 3 года назад

    Who had their ear drums busted and about shat their pants when an obnoxious ad played

  • @MywifeChannel
    @MywifeChannel 3 года назад

    Designer is automatically installed with library? I mean... I simply love that tutorial!

  • @user-cc8kb
    @user-cc8kb 4 года назад

    Thank you very much. That's all I needed to get started :)

  • @jamesstone8988
    @jamesstone8988 3 года назад +1

    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!

  • @codeman5414
    @codeman5414 5 лет назад

    I will tell you what sir, you earned a like subscribe, and turn on notification bell. You are a great teacher!

  • @alexa_neonova
    @alexa_neonova 4 года назад +1

    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! ^^

  • @aryanagarwal2083
    @aryanagarwal2083 2 года назад

    thanks Tim, you are great!

  • @christiancarre3392
    @christiancarre3392 4 года назад

    Hello Tim
    Thank you so much !
    Kiss from France

  • @bluesdog88
    @bluesdog88 4 года назад +1

    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 года назад +1

      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?

  • @xiokraze
    @xiokraze 5 лет назад +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!

  • @hassanmohamed-iz2un
    @hassanmohamed-iz2un 3 года назад

    you are really wonderful expert magician thaaankss

  • @codewithwasif3517
    @codewithwasif3517 5 лет назад

    First one. Was waiting so badly

  • @karthickraja2178
    @karthickraja2178 5 лет назад

    I want more video. Waiting ...
    Please teach all think what you have...
    Thanks,for your video

  • @majamengineering2391
    @majamengineering2391 4 года назад +2

    I instaled the pyqt5 tools by cmd but there is no qt designer in the installation folder

  • @destinyhans8519
    @destinyhans8519 5 лет назад

    Your videos are the best

  • @UCFc1XDsWoHaZmXom2KVxvuA
    @UCFc1XDsWoHaZmXom2KVxvuA 3 года назад

    Dammit tech with tim you always save my butt

  • @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

  • @MaStErOnSlaughtGaming
    @MaStErOnSlaughtGaming 4 года назад

    Well explained,I love your videos...

  • @thestas9778
    @thestas9778 4 года назад

    thank you very match from Russia

  • @vxsniffer
    @vxsniffer 2 года назад +1

    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.

  • @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..

  • @krultu
    @krultu 4 года назад

    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.

  • @SirDonTheThird
    @SirDonTheThird 4 года назад +3

    0:40 the console tells you where it installed pyqt5-tools. just wanted to comment incase anyone was having trouble finding theirs.

  • @electrotsmishar
    @electrotsmishar 5 лет назад

    keep it up. qt is awesome. I've used c++ one. but python is awesome too

  • @nicolasreyes4835
    @nicolasreyes4835 4 года назад +1

    Thanks for your time, i hace a question for you, How can i add, a QGis map in my gui?

  • @ernestovalenzuela5018
    @ernestovalenzuela5018 3 года назад +1

    Excelent video! This is what I need! If I signed as a Programmer Master could I get support on how to use PyQt5 to execute c++ programs? Or, support how to use f2py / ctypes?

  • @justoneofthepeople7585
    @justoneofthepeople7585 4 года назад +1

    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

  • @otikamporn
    @otikamporn 3 года назад

    Thank you. That's awesome.

  • @khalilselmi6056
    @khalilselmi6056 5 лет назад

    You made my day thanks brother

  • @beppemerlino
    @beppemerlino 4 года назад

    You are my Hero!

  • @julians.2597
    @julians.2597 5 лет назад +1

    thx for this great tutorial! Really hepled me out

  • @AkumaQiu
    @AkumaQiu 4 года назад +6

    Thanks for the awesome video!
    When I run pyuic5 from my folder with the test.ui file, I was giving me a
    'pyuic5' is not recognized as an internal or external command
    So then I went and found the pyuic5 application, from the scripts folder, copied it, and pasted it into the folder with the test.ui file, and it worked.
    Is this due to the scripts folder not being on PATH? I still don't really understand how to add folders to path~
    thank you!!

    • @Xanderioz
      @Xanderioz 4 года назад +1

      for some reason I do not have pyuic5 in scripts folder either, any solution?

    • @goldenslingshot6251
      @goldenslingshot6251 4 года назад +1

      look i had this probleme but there's a way to solv it
      Suppose you have saved your file from Qt Designer as dialog.ui. Then you can create another file, say main.py, with the following contents:
      from PyQt5 import uic
      from PyQt5.QtWidgets import QApplication
      Form, Window = uic.loadUiType("dialog.ui")
      app = QApplication([])
      window = Window()
      form = Form()
      form.setupUi(window)
      window.show()
      app.exec_()
      it actualy worked you can try it

  • @Atonix99
    @Atonix99 2 года назад

    How do u link the function to the statusbar as he said on 10:39?

  • @przemekostrowski3108
    @przemekostrowski3108 3 года назад

    Very useful video. Thx.

  • @mcjohn8838
    @mcjohn8838 3 года назад +2

    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 года назад +6

    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;

  • @N10-b8f
    @N10-b8f 5 лет назад

    Thanksss Man. Cheers👍👍👍👍

  • @luisnunez9634
    @luisnunez9634 3 месяца назад

    explains it very well

  • @sairajdas6692
    @sairajdas6692 5 лет назад

    Quality stuff bro

  • @niggolas1807
    @niggolas1807 2 года назад

    thank you! that part of how to get the example.ui file to a .py file was missing for me in another video

  • @beelzebub3920
    @beelzebub3920 4 года назад +71

    me having 4 python versions and 5 interpreters

    • @idkwhatnameilikewhy2236
      @idkwhatnameilikewhy2236 4 года назад +13

      But only half of them work correctly xd

    • @beelzebub3920
      @beelzebub3920 4 года назад +1

      @just a user tru

    • @emilkhojayev4645
      @emilkhojayev4645 4 года назад

      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 4 года назад +1

      @@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 года назад

      😂😂😂

  •  4 года назад +3

    I got this error message when attempting to use the pyuic5 command in PowerShell on Windows 10:
    "pyuic5 : The term 'pyuic5' is not recognized as the name of a cmdlet, function, script file, or operable program.
    Check the spelling of the name, or if a path was included, verify that the path is correct and try again."
    Thanks to someone's answer on Stack Overflow, I found this command worked for me:
    python -m PyQt5.uic.pyuic -x -o
    You can create a .bat file to be able to run pyuic5 as a command in Run, Command Prompt or PowerShell or just create an alias if you're using Linux (including the Windows Subsystem for Linux). I'm pretty sure you can create aliases for PowerShell, too. Instructions for those things are readily available with a quick Google search. Short of that, hopefully the above command will keep you moving for now.

  • @Cyrax_LK4D4
    @Cyrax_LK4D4 Год назад +3

    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

  • @mengarain4327
    @mengarain4327 4 года назад +1

    Hello Tim!
    Do you know how i can insert a "next" and "back" Button which results in refreshing the window with other widgets?
    And thanks for your tutorials, they are very usefull.

  • @mitkosokolov9382
    @mitkosokolov9382 3 года назад

    Hi, can we use this program to create zigbee network graph?

  • @manuchaudhary7902
    @manuchaudhary7902 4 года назад

    This is great lecture