Learn Python GUI Development for Desktop - PySide6 and Qt Tutorial

Поделиться
HTML-код
  • Опубликовано: 28 июл 2024
  • Learn how to use Qt for Python using PySide6 to build cross platform desktop apps for Windows, Mac and Linux.
    💻 Source code: github.com/rutura/Qt-For-Pyth...
    ✏️ Course developed by Daniel Gakwaya. Check out his RUclips channel: / @learnqtguide
    🐦 Twitter: / learnqtguide
    🔗 Want more from Daniel? www.learnqt.guide/udemy-disco...
    🔗 Join Daniel's discord server for support: / discord
    ⭐️ Course Contents ⭐
    Part 1:
    ⌨️ (0:00:00) Intro
    ⌨️ (0:05:50) Welcome
    ⌨️ (0:16:54) Get the most
    ⌨️ (0:19:55) Python and PySide6 Install
    ⌨️ (0:28:41) Understanding the code
    ⌨️ (0:35:40) Organizing the code in classes
    ⌨️ (0:50:57) Signals and Slots
    ⌨️ (1:08:47) Intro to Widgets
    ⌨️ (1:09:21) Using QWidget
    ⌨️ (1:22:02) QMainWindow
    ⌨️ (1:48:02) QMessageBox
    ⌨️ (2:06:46) QPushButton
    ⌨️ (2:12:31) QLabel and QLineEdit
    Part 2:
    ⌨️ (2:24:33) QTextEdit
    ⌨️ (2:42:11) QLabel and Images
    ⌨️ (2:47:29) Size Policies and Stretches
    ⌨️ (3:02:10) QGridLayout
    ⌨️ (3:09:42) QCheckBox and QRadioButton
    ⌨️ (3:25:45) QListWidget
    ⌨️ (3:37:32) QTabWidget
    ⌨️ (3:45:35) QComboBox
    ⌨️ (3:52:22) Qt Designer : Introduction & Install
    ⌨️ (3:59:41) Using Qt Designer
    ⌨️ (4:08:40) Qt Designer and QUiLoader
    ⌨️ (4:17:48) Wrapping loader object into ui class
    ⌨️ (4:24:11) Compiling User Interfaces to Python
    ⌨️ (4:39:57) Working with resources manually : Qt Designer
    ⌨️ (4:56:41) Loading resources from Qt Designer
    ⌨️ (5:04:05) QMainWindow : Putting it all together!
    ⌨️ (5:18:01) Farewell
    🎉 Thanks to our Champion and Sponsor supporters:
    👾 Nattira Maneerat
    👾 Heather Wcislo
    👾 Serhiy Kalinets
    👾 Erdeniz Unvan
    👾 Justin Hual
    👾 Agustín Kussrow
    👾 Otis Morgan
    --
    Learn to code for free and get a developer job: www.freecodecamp.org
    Read hundreds of articles on programming: freecodecamp.org/news

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

  • @tadasdarbui3994
    @tadasdarbui3994 Год назад +42

    Wow, 15 minutes into this course, already so hyped. I cannot believe this is for free. I thank you so much guys for sharing your knowledge. I really had to pause this video and appreciate the moment, again, thank you so much guys! The presenter is also super awesome and easy to follow, awesome structure etc. Amazing job, greetings from Lithuania

  • @fahreddinsengul1104
    @fahreddinsengul1104 Год назад +7

    Incredible tutorial! It's awesome that you explain the details and not just make us memorise the codes.

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

    Thank you for this. I wanted to take a deeper dive into GUI development with Python, and this course was great!

  • @adpt_music
    @adpt_music Год назад +29

    Been trying to learn Qt for a month from their own tutorials and examples and have been banging my head against a wall trying to separate out the code into classes / instances. This tutorial series is exactly what i needed. Clear, concise and actionable examples. Thank you so much.

    • @lmnts556
      @lmnts556 11 месяцев назад +5

      I have not looked at the documentation but I really despise when libraries are over-bloated and do not provide good examples. Making it so you have to have a PHD in their docu before you can create a simple window. Excellence is always simplicity, not the opposite.

  • @nmstoker
    @nmstoker Год назад +8

    The more I watch this, the more I'm impressed by this video. Covers so much but well organised and clearly explained. Thank you!! 🙏

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

    Thank you! I've done all kinds of crazy things using what I learned from this video!

  • @lisalin9375
    @lisalin9375 7 месяцев назад +6

    I really love "you can do every kind of crazy things", truly amazing teacher

  • @DICE--yt
    @DICE--yt Год назад +2

    Thank you so much, what a wonderful course, keep going brother.

  • @mounirkanane8083
    @mounirkanane8083 Месяц назад +5

    If you are on MacOS at 1:27:00 you need to add this line after self.setWindowTitle("Custom Window")
    self.menuBar().setNativeMenuBar(False)

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

    Great presentation. Very informative. Clear and very understandable. Thank you.

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

    Amazing course! Thank you so much, you are helping a lot of people

  • @f4rrusco
    @f4rrusco 7 месяцев назад +8

    00:00:00 Intro
    00:00:24 Welcome
    00:15:48 Get the most
    00:18:39 Python and PySide6 Install
    00:26:50 Understanding the code
    00:33:22 Organizing the code in classes
    00:47:39 Signals and Slots
    01:04:19 Intro to Widgets
    01:04:51 Using QWidget
    01:16:41 QMainWindow
    01:40:59 QMessageBox
    01:58:30 QPushButton
    02:03:53 QLabel and QLineEdit
    02:24:32 QTextEdit
    02:41:01 QLabel and Images
    02:45:58 Size Policies and Stretches
    02:59:41 QGridLayout
    03:06:45 QCheckBox and QRadioButton
    03:21:45 QListWidget
    03:32:46 QTabWidget
    03:40:16 QComboBox
    03:46:37 Qt Designer : Introduction & Install
    03:53:28 Using Qt Designer
    04:01:52 Qt Designer and QUiLoader
    04:10:24 Wrapping loader object into ui class
    04:16:21 Compiling User Interfaces to Python
    04:31:05 Working with resources manually : Qt Designer
    04:46:45 Loading resources from Qt Designer
    04:53:40 QMainWindow : Putting it all together!
    05:06:40 Farewell

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

    Thank you for being the only people that have a real tutorial for this, among other things

  • @nelsonnykam2249
    @nelsonnykam2249 Год назад +2

    Exactly what I wanted!! Thanks 🙏

  • @ameenwaheed268
    @ameenwaheed268 Год назад +2

    Thank you Daniel and thank you freeCodeCamp for the amazing course. I love how you explain things and I learned a lot from this course. Thank you again.

  • @surajjain7119
    @surajjain7119 Год назад +5

    Thanks FCC for everything!!

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

    In the support world I live in, customers try to grow a brain and cause problems. I feel I am doing the same thing: For this code:
    if ret == QMessageBox.Ok :
    print("User chose OK")
    else :
    print ("User chose Cancel")
    Couldn't we define a method and save having to A) Type all this more than once(even copy/paste it) and B) maintain it later? Am about 40% through and just LOVING this!!!! Thank you for all your had work!!

  • @the-ghost-in-the-machine1108
    @the-ghost-in-the-machine1108 Год назад

    nice demonstration. appreciate your work!

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

    Excellent course, I learned a lot there are additional files in the source that seem to reference other tutorials as well

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

    thank GOD!! I have just been doing a big project in PyQt5 and I really missed a tutorial on this channel about this amazing library, couldn't have been in a better moment, thank you for the knowledge!
    EDIT: also... what about Qt Quick? I think is a very powerful module and a valuable resourse

  • @hy0chan
    @hy0chan Год назад +2

    thank you so much for this. I'm impressed by the clear explanations, and this fundamental is what I'm looking for. this video might help to change my life. lol.

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

    Great video, thank you so much.

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

    Very well explained and well documented

  • @vighneshnkp6866
    @vighneshnkp6866 Год назад +10

    Just finished your C++ course. Looking forward to this!

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

    Wonderful tutorials. Thanks for your explanation and time.

  • @OlehPatrushev
    @OlehPatrushev 7 месяцев назад

    Thank you very much! It's so useful.

  • @liloufu4667
    @liloufu4667 10 месяцев назад

    really helpful! Thank you so much~!

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

    i love this channel!!

  • @pixxellagemedia8145
    @pixxellagemedia8145 Год назад +2

    And I was thinking of this today 😊

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

    finally a course about this! Thank you so much freecodecamp :)

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

    Amazing tutorial!***** I highly recommend this tutorial to anyone who wants to learn how to use Qt for Python using PySide6. It is perfect for beginners who want to learn how to build cross-platform desktop apps. The tutorial is well-structured and covers all the important topics in a clear and concise manner. Thanks a lot.

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

      Hello.I looked into thios course.I like it but does it explain things like hopw to change the backgropund color of a main window.I can search it but I am curious if it has this.I made 1 hour of the course

  • @gadgetboyplaysmc
    @gadgetboyplaysmc 3 месяца назад +1

    For Macbook users, I was only able to get the action to work by doing:
    ```py
    # Create the menu bar
    menubar = QMenuBar(self)
    menubar.setNativeMenuBar(True)
    self.setMenuBar(menubar)
    # Create the Quit menu
    quit_menu = QMenu("\0Options", self)
    menubar.addMenu(quit_menu)
    # Create the Quit action
    quit_action = QAction(" &Quit", self)
    quit_action.setShortcut("Ctrl+Q")
    quit_action.triggered.connect(self.close)
    quit_menu.addAction(quit_action)
    ```

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

    Amazing course!

  • @TheRockndot
    @TheRockndot 7 месяцев назад +2

    Amazing tutorial! My only recommendation would be to put some acoustic panels on the walls to reduce the echo/resonance in the video - it makes it kind of hard to hear.

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

    Hello, first of all thanks for such a nice lecture.
    I would like to know if we can make two QTextEdit in one QMainWindow and use one of the window for input and another one for output purpose, also if we can keep the source text while pasting the data on input window. For eg PowerShell ISE.

  • @CristhianDalmazzo
    @CristhianDalmazzo Месяц назад

    I learned a lot with this video and this is really cool!

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

    Tank you so much for this course, please make a class only about QT Creator, i want to learn Qt Creator

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

    Thanks , is very helpful.

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

    Thanks for these contents

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

    Thank You That was great!!!!

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

    always find things that I want to learn in freecodecamp, excellent!!!

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

    Thank you so much for this lessons... very very valuble. And can you uplaod project development video using Pyside... Thank you so much

  • @yussi5301
    @yussi5301 9 месяцев назад

    From QLineEdit documentation:
    " When editing is finished, either because the line edit lost focus or Return/Enter is pressed the editingFinished() signal is emitted. Note that if focus is lost without any changes done, the editingFinished() signal won’t be emitted. "
    Losing focus happens when the user TABs to another widget or clicks at another widget (and maybe in other ways also).

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

    I wish you could have touched on pyqt MVC, it has always been challenging to me

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

    amazing!

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

    Thanks for this one, really need another tutorial on building a more graphical application with QT and pyside like an inventory manager or something like, it'll be awesome

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

      i use pyqt5 (just because it was out before pyside6 and pyqt6 and haven't switched over.) however, a tutorial on how to make say custom buttons that use an image or an image as a button or say adding 3D models that you can rotate using a renderer qt widget or using a draw scene widget would be VERY helpful. Figuring that stuff out took me a LONG time , even with using stackoverflow.... there just doesn't seem to be a lot of information on it. So I feel you, i managed to figure it out, but it was difficult as the information for how to do that stuff is pretty scattered. I made a program that uses pythonocc with PyQt5 to display 3D models in a viewer that also uses Qt's animation methods,. It also dynamically adds animated buttons depending on what options are picked in the program and also dynamically adds images that double as buttons and it also dynamically draws lines in a graphics scene. It took me quite awhile to figure out.

    • @lovenyajain6835
      @lovenyajain6835 3 часа назад

      @@resresres1 hey i am a student at an university and I'm doing a similar project as the phase 0. 3d viewer basically. Can you please send me your source code, if you are comfortable.

  • @jasjyotsingh2007
    @jasjyotsingh2007 10 месяцев назад

    the exec method runs on local app variable but inside some functions are being called on app instance variable

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

    Thank's Sir very very Much
    may Allah keep Your Always ☺ ☺ Happy

  • @carl2488
    @carl2488 День назад

    Watching this brilliant tutorial on a big TV and got to 1:41:05 and felt sure my TV had crashed!

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

    nice! so many thing to learn. so less time

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

    This is really cool :)

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

    Thank you.

  • @ChandanGupta-su8qx
    @ChandanGupta-su8qx Год назад +1

    This is what I m looking for

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

    I really like to see the next QT topic Events, Graphics View Framework, Networks, Databased, and Threads? from where I can learn? or another plan for the code camp course?

  • @nekketsu6676
    @nekketsu6676 7 месяцев назад

    for the Qlabel and Images part , can you explain how can we resize the image please ?

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

    Thanks for creating wonderful content I was waiting for it eagerly. But as far as I know QT Widgets are not open source most of them are propitiatory. Also is there is any report writer available like crystal report I mean we can build table CRUD is possible but the have to create many reports for that table. I mean doing it from scratch is really scary something like dynamic report where you can group columns, sort orders and condition beside this export to PDF, Excel functionality I mean any rapid report generator tool available for Python will be turning point for me to move from PowerBuilder to Python. Thanks in advance.

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

    It'll be awesome if you guys could do a video course on the Full Stack Open course.

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

    Super awsome..... could you please create the course for Haskell or Purescript tutorials.

  • @Anton_Sh.
    @Anton_Sh. Год назад +5

    Hi! First of all, thank you.
    I have a question: why would/should one choose PySide over PyQt ?

    • @rblorre
      @rblorre Год назад +2

      Pyside is made and supported and documented by the Qt company, PyQt is made by a third party. I Heard the API is similar to identical, but the licensing is different (which is why the 2 exist). I think it makes more sense to go with the official PySide, but do some research on what I previously mentioned to decide

    • @Anton_Sh.
      @Anton_Sh. Год назад

      @@rblorre thanks!

  • @mshojaei77
    @mshojaei77 Месяц назад

    awesome tutorial

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

    I just started this course, and I'm very excited... But I already ran into a problem :( I did everything in the setup, and it reacted exactly like in the video, with one exception. I copied the sourcecode for testing if the install was succesful, but I get an importerror - even though everything is satisfied when I run the pip3 install pyside6 in the terminal - both in VS and in my regular terminal.
    The exception is that when I write python in my terminal, it refers to python 2. something (I'm on a mac), but if I write python3 in the terminal it refers to python 3.11.3. Is this the reason for my problem, or should I look elsewhere?

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

    I will wait for the next video with qml

  • @ahmedmokhtar4860
    @ahmedmokhtar4860 Месяц назад

    Awesome Course

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

    Thank you so much

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

    Finished Organizing the code in class and started signals and slots

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

    Tailwind styles are NOT being applied to any components in my components folder i.e example Hero.js why?

  • @jhPampoo
    @jhPampoo 8 месяцев назад

    Im interested in Threading, do you have some tuts? Thanks

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

    Very excited with this but Sir my problem is after the development I suggest you make a video on how to convert it into sutup that runs on (Kali Linux)

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

    Can you make a Powershell scripting tutorial?
    Like the Powershell in windows (preferably Powershell 7).

  • @Frostbitecgi
    @Frostbitecgi 6 месяцев назад +2

    i watched the 5 hours full video but still don't know how to build a simple calculator using pyside6. i only learned how to make buttons and windows but that's not helping me create a fully functional GUI application like a calculator. so i am not sure if i should buy his course!! because in that course he might just teach how to create buttons but not show how to use them to make a fully functional app.

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

    At about 1:26:29
    when he asks to first show the menu bar it doesn't work at least on a Mac. I had to add menu_bar.setNativeMenuBar(False) to get it to show up at first.

  • @billw.5964
    @billw.5964 Год назад +2

    Daniel, Great presentation! Retired assy/C Engineer here. I’ve been playing with Python and followed your course all the way through. I began implementing your code to get a feel of my environment (Mac/VSCode) and have had a problem. I reduced my code to a main window and a menu bar (verbatim from your lecture) with one FILE selection. When I run the code no errors result but only a skeleton window shows up without the menu bar. I’ve messed with this for a few hours looking for possible problems without result. Any suggestions either from you or any of your viewers? Thanks!

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

      I have subsequently had some success with menubars in macOS, after adding the "addAction" method. and discovered that "settings" re-routed to the "preferences" submenu, on the macOS platform

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

      I had this same issue. I found a solution on StackOverflow where you add this line of code just below your menu_bar variable:
      menu_bar.setNativeMenuBar(False)
      This will force the menu_bar to be placed inside the application, instead of trying to use the native mac menu.

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

      @@adpt_music Thx for that line of code. It fixed it! At first I thought it might have been me running the dark window on mac, so I'm glad I didn't start looking for that. You saved me time. Thx again!

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

    Thanks

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

    THANK YOU THANK YOU THANK YOU I LOVE YOU

  • @user-qj3ot2ii9d
    @user-qj3ot2ii9d 8 месяцев назад

    Hello! Please help me how to correctly solve the administration problem, for example, use Python,QT, PostgreSQL. Please recommend an algorithm for organizing an access level for adesktop application where different interface components are included in different access classes, and when a new user is added, he will be included in one of these classes, and for him there will be Only components that are included in this access class are accessible. The question is, in order to implement this, what algorithm can be supported, or if there is documentation that can help resolve this issue. Thank you very much in advance!

  • @A-Sobeck
    @A-Sobeck Год назад

    Hi, I’m new here and looking to begin leaning CS. Any recommendations on which video, or playlists to watch first?

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

      Hi Alexis. Im Victoria! I’m looking to begin too. Would you be interested in being each other’s accountability partner? I’ve done quit a bit of research, I plan on starting with Python.

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

    Having sweet heaven I'm just now this right moment looking for pyqt tutorial and then that's right moment god send me you

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

    Is there any cheat sheet for pyside6 please? by the way, great video, and thanks a lot .

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

    Hi may anyone help me please. I'm unable to use the python-uic ... command. The error says "'pyside6-uic' is not recognized as an internal or external command,''pyside6-uic'' is not recognized as an internal or external command,operable program or batch file."
    I've already insatalled pyside6 for all the requirements are said to be satisfied

  • @amirbahador.developer
    @amirbahador.developer Год назад

    ty very much 🌹🌷🙏🏻

  • @random.vlogator
    @random.vlogator Год назад

    Thank you very much for the time to put together such a good tutorial. I have an issue that the icon does not show on the toolbar menu. I'm using Windows 10 Pro. Does anyone have the same problem? Thanks.

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

      I had this issue on Windows 11 and Fedora 37. When a directory is opened in VSCode, it is set to the current working directory when a Python Script launches. For simplicity call this directory "top".
      If you create a subdirectory called "sub" and place your main.py and icon.png in it. Running the main.py will not change the current working directory from "top" to "sub".
      Therefore VSCode it is looking for the icon.png within "top" and ignoring the icon.png within "sub". The easiest solution is to close all open folders within VSCode and then open "sub" directly within VSCode. It should work in this case. If you still have issues, you can attempt to use a raw string r"C:/Users/Philip/Documents/Tutorial6/icon.png" to specify the full file path but this solution isn't ideal as you application won't work if you move it to a folder in another computer.

    • @random.vlogator
      @random.vlogator Год назад

      @@philipyip1988 Thanks Phil, I actually used the full path instead to resolve the issue. If you use the VS Code and follow the tutorial, the icon will not show up as you cannot specify your resources for the project, like what you can do in the Qt Creator. Hence, the relative path will not work, you need to use the full path, the absolute path.

  • @sparklee6994
    @sparklee6994 Месяц назад

    How to use Asyncio with pyside6? I have a GUI designed by pyside6 (and Qt), behind the GUI I have intensive serial communication done by Pyserial and asyncio....can I share the same event loop required by GUI and asyncio?

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

    Thanks for this course, but the timeline seems wrong, could anyone fix it please?

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

    5 hours this is amazing content for free......

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

    I would of like to see Qt Creator with Qt Designer. I don't use Visual Code. There was a lot of cuts about Qt Creator on this video. On Qt Creator their was mis opportunity to clarify Environment variable PYSIDE_DESIGNER_PLUGINS is not set, bailing out and no instance of QPyDesignerCustomWidgetCollection.

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

    Hi , is psoible to update the cupon offer for udemy, i want to see the rest of the course.

  • @loradurkova7152
    @loradurkova7152 6 месяцев назад

    Can someone help me? I cannot understand what the QtCore and QtCore.Qt are used for.

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

    I have a long process to do with my UI.I am using QThread for that but i am getting "qobject: cannot create children for a parent that is in a different thread" this error can any one help.

  • @Rapha_Carpio
    @Rapha_Carpio 10 месяцев назад

    on which minute can i see like an example of how the app will look like?

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

    but sir i have run into many courses but no one tells us to how to connect the interface with backend, means to put functions or to firebase. also I have another query that how to us a single GUI for the multiple data Pyside6, example: if you see the healthcare monitoring app there are multiple patient data shown in the single window, insuch a way when the patient 1 button is pressed then its data is shown in the GUI, but when the patient 2 button is pressed the data of patient 2 is shown, but the pervious patient1 data still there streaming in those components. please I have the screenshot of an interface please guide me how to make is

  • @adewumi8368
    @adewumi8368 8 месяцев назад

    Can this be used to develop webapps and phone apps too?

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

    How do you deploy a program? Sorry looked at the end of the video and i dont see that part

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

    good tutorial,... demonstrated every pieces of GUI design, but manipulating with sub-window under the main window. how to create it work on it and delete it while remain the main window.

  • @NitinSingh-webdev
    @NitinSingh-webdev Месяц назад

    hey i need help with this i am creating a project i need to make a box wich contain dynamically box which are clickable and on each button call a function to show card list something like a filter functioning with box card which show cards and i need to place my filter cards and to selecttion card which are clickable in differrent widget for better ui any one with a slightly idea how to achieve this i sincerly need help with this plz plz

  • @nahueld9326
    @nahueld9326 4 месяца назад

    I have problems with qt designer, using W11, when I open the design layout to edit grafically the window, it crashes and closes itself. I've already tried using older versions of qt creator, if anyone knows how to solve it

  • @faridnubaili7917
    @faridnubaili7917 7 месяцев назад

    i have this error when load ui file to python using quiloader
    qt.pysideplugin: No python files found in '.'.
    qt.pysideplugin: No instance of QPyDesignerCustomWidgetCollection was found.
    any solutions for this problem?

  • @m.ashfaqullasharif3085
    @m.ashfaqullasharif3085 4 месяца назад

    Does pyqt jobs available in job market, bcz i didnt find it at any platform out there.

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

    Can we make a vlc media player like application with pyside also can we build android apps?

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

      You can make simple media player applications easily with Qt/Pyside (not quite like VLC) and Android Apps via QML provided you have the SDK/NDK installed.

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

      @@squarerootof2 can your share a useful resource.

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

    my antivirus detected my python program as a virus on window desktop. how do i fix this?

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

    With this channel and other free resources on RUclips, I don't know why there are still people waste money to join coding bootcamp!