Convert GUI App to Real Program - Python to exe to setup wizard

  Рет қаралды 461,965

Python Simplified

Python Simplified

Күн бұрын

You've just made a beautiful GUI app with Python - but there's a big difference between creating an app for your personal use and distributing it all across the web, reaching many people who don't necessarily know anything about Python.
In this tutorial, I will show you exactly how to convert your Tkinter, Kivy, KivyMD, PyQT5, or other GUIs into a full-blown professional program! 🤩🤩🤩
The end result is a 😱 SINGLE SETUP FILE 😱 which anyone can download and install on their computer - even your grandmom!!! 👵
We will use Pyinstaller to create an executable file and Inno Setup to bundle it with dependencies and convert them into a setup wizard.
In addition, we will discuss some common errors, how to fix them and how to avoid irrelevant instructions (hint: do we really need to modify the SPEC file? 🤔)
We will briefly tackle licensing (open source, as you may guess 😉), and generating icons.
Please note, this video is designed for Windows developers and users! However, I will cover Linux and Mac as well in some future tutorials... the Mac tutorial is of course inspired by Tom! XDD (but only members of our Discord community will understand the joke, this is how I test if they read video descriptions 😅)
-------------------------------------------
⏰ Time Stamps ⏰
-------------------------------------------
00:00 - intro
00:40 - project files and database
01:31 - download Random Recipe Picker (or use your own Python app)
03:29 - install requirements.txt
03:46 - Pyinstaller vs auto-py-to-exe
04:25 - run Pytinstaller builder
05:22 - prep GUI script for Pyinstaller
05:56 - resource path (and important sys._MEIPASS fix!)
08:18 - SPEC file
09:20 - generate software icons
10:04 - convert script and assets to exe file
11:22 - fix Pyinstaller File Not Found Error
12:48 - test executable
13:36 - install Inno Setup
14:17 - convert exe and assets into a setup file
16:39 - license
20:00 - add subdirectories to Inno Setup compilable
21:56 - test setup file on another PC
22:57 - thanks for watching! :)
-------------------------------------------
📽️ Important Tutorials 📽️
-------------------------------------------
⭐ Create GUI App with SQLite and Tkinter (Random Recipe Picker):
• Create GUI App with Tk...
⭐ Anaconda for Beginners:
• Anaconda Beginners Gui...
⭐ Convert .py to .exe with auto-py-to-exe:
• Convert py to exe - fr...
-------------------------------------------
💻 VENV Alternative 💻
-------------------------------------------
$ python3 -m venv name_of_my_env
$ source name_of_my_env/bin/activate
-------------------------------------------
🖇️ Tutorial Links 🖇️
-------------------------------------------
🔗 Random Recipe Picker Repository: github.com/MariyaSha/RandomRe...
🔗 Resource Path Function (Stack Overflow): stackoverflow.com/questions/3...
🔗 PNG to ICO Icon Converter: image.online-convert.com/conv...
🔗 Inno Setup: jrsoftware.org/isinfo.php
🔗 Open Source Initiative MIT License: opensource.org/licenses/MIT
-------------------------------------------
🤝 Connect with me 🤝
-------------------------------------------
🔗 Github:
github.com/mariyasha
🔗 Discord:
/ discord
🔗 LinkedIn:
/ mariyasha888
🔗 Twitter:
/ mariyasha888
🔗 Blog:
www.pythonsimplified.org
-------------------------------------------
💳 Credits 💳
-------------------------------------------
⭐ Beautiful titles, transitions, sound FX, and music:
mixkit.co
⭐ Beautiful icons:
flaticon.com
#gui #graphics #app #application #python #pythonprogramming #exe #pythoncoding #software #softwaredevelopment #pythonsimplified #convert #code #pyinstaller #innosetup #wizard #windows

Пікірлер: 535
@hiutale
@hiutale Жыл бұрын
Hih, this is a tad too advanced info for me but oh my gosh how much I CANNOT WAIT to use this tutorial in real life!!! 😍 Thank you, Mariya! 😍 I'm only half way through but I'll finish watching the tutorial now just to see how much I understand already. Comparing oneself to the past versions of oneself is the best way too see the progress! Keep it up everyone!! 😁😁👍 And Mariya, please keep up the amazing work! Our support for you is an infinite loop after clicking 'run'! 👾🎵🥳
@PythonSimplified
@PythonSimplified Жыл бұрын
Thank you so much for the 🤩 INCREDIBLE 🤩 comment and for letting me know it's a bit advanced!!! I definitely agree it's not as beginner friendly as the rest of my videos - but I'll make sure that by the time you come back to watch the rest of this tutorial, you will have all the background to understand what we're doing! I have 2 solutions, and one of them is super quick! 😉 I think the biggest learning curve here is creating the GUI app itself (and maybe installing Python libraries from a requirements file... It's the first time we do it on this channel, and now when I think of it - I could have simplified it further 🙃). ⏰⏰⏰ QUICK SOLUTION ⏰⏰⏰ ------------------------------------------------------------ 1️⃣ step 1: Start with a very simple GUI app that doesn't involve a database at all! This is the first app I've ever made (I had no idea what a GUI was before... it's something that was requested on the channel and I went down the rabbit hole as a result 😀): ⭐ Create a simple GUI app with Tkinter: kzfaq.info/get/bejne/n9qCf7WX2rLDgIU.html ❗You may need to adjust "filetype" tp "filetypes" in line 24: file = askopenfile(parent=root, mode='rb', title="Choose a file", filetypes=[("Pdf file", "*.pdf")]) An alternative simple GUI app tutorial (with a much bigger font hahaha) that you may like even more is my Trivia Game (it's using nicer GUI library named PyQT5 😉): ⭐ Create a simple GUI app with PyQt5: kzfaq.info/get/bejne/b8-Kf6efvMXap4k.html And instead of creating a special database, we fetch data directly from the internet using a beginner-friendly site named Open TriviaDB: ⭐ PART 2 - Get Trivia Questions for GUI app with PyQt5: kzfaq.info/get/bejne/qJiKgZOeuarSgJc.html BTW - that's the same app we have converted in the auto-py-to-exe tutorial I mentioned at 03:46 😊 2️⃣ step 2: follow the instructions of the current tutorial with the notes: - at 15:30 click "add files" instead of "add directories" to include logos. - at 20:00 no need to add special subfolders because in both cases the logos are in the exact same folder as the app itself. ⏰⏰⏰ LONG SOLUTION ⏰⏰⏰ ------------------------------------------------------------ 1️⃣ step 1: learn about SQLite, which has a very nice beginner-friendly database engine: ⭐ SQLite Basics: kzfaq.info/get/bejne/hc6aYKaiprLWp58.html ❗you'll need to add connection.commit() after each data insertion command, I've accidentally skipped it in the tutorial above 😅 2️⃣ optional step 2: practice your SQLite skills and learn how you can generate databases by automatically copying them from the web (what we call Web Scraping): ⭐ Web Scrape Databases with SQLite and Mechanical Soup: kzfaq.info/get/bejne/g9F3hNCL1LPZgoE.html This once includes the connection.commit() command I've mentioned above 😉 3️⃣ step 3: follow my Random Recipe Picker tutorial: ⭐ Create GUI App with SQLite and Tkinter (Random Recipe Picker): kzfaq.info/get/bejne/a9d_od13nLjXfnU.html 4️⃣ step 4: follow the instructions of the current tutorial as now you have all the tools required to understand it 🥳🥳🥳 ------------------------------------------------------------ In terms of the rest of your comment (sorry, I had to start with the instructions because I'm assuming other folks will struggle with the unusually advanced level 😅) We have incredibly similar life views! I couldn't agree more with comparing to the past versions of ourselves! I think that's the reason why it took me so long to finish this tutorial hahahaha, I wanted it to be better than anything I've ever done before 😅😅😅 We don't necessarily need to be the best, somebody will always be better, smarter or faster (well... unless we're Elon Musk or Michael Jordan or something hahaha) - but there must always be progress! our biggest competition should always be our past self, otherwise, life will be very stressful 😊 And sorry about the super long comment hahaha... I multiply your infinite loop times millions! I wouldn't have the motivation and drive to keep doing this without the incredible support of the viewers' community! And actually - I wouldn't know so much about programming if experienced developers weren't kind enough to share their expertise with me in the comments. I may be the presenter behind this channel, but I can only take a fraction of the credit. I've learned more from viewer comments than from University and hopefully, this comment will help lots of talented aspiring developers such as yourself on their exciting journey! 🙂🙂🙂 OK, I think I accidentally wrote a book instead of a comment hahahaha... I'll go rest now XDDDDDDDDDD Thank you so much once again!!
@runenielsen6932
@runenielsen6932 Жыл бұрын
Could you maybe make a oop video where you incloud sql, some graphs and gui. I find that very usefull 😊😊
@ojaimark
@ojaimark 9 ай бұрын
I can't thank you enough for this video. Like lots of python developers I've been tearing my hair out trying to find a simple way to deploy python scripts in a way that my non pythonic coworkers can utilize them. This works so well, and it's a very familiar workflow for them to just install it like any other program. Also thank god you mentioned MEIPASS2 or I might have given up before finding the answer to that error.
@mattknezel8003
@mattknezel8003 5 ай бұрын
This was the most complete video on this topic I have found. Appreciate the great structure and clear instruction!
@mary_040
@mary_040 Жыл бұрын
Hi Marija, I just recently discovered your channel. I often have problems evaluating and understanding documentations and plain text for myself, so I love that you visualize a lot in your videos! The simplicity of the examples is incredibly important to understand the principle of things. With this knowledge, it is then easier to understand complex explanations afterwards. You have a gift for teaching and illustrating! Besides that, it makes me very happy to see other women succeed in the IT world. - A fellow Maria :)
@PythonSimplified
@PythonSimplified Жыл бұрын
Yeeeyyy!!! Welcome aboard!!! I'm so happy you enjoy my tutorials and thank you so much for the amazing comment, Mary!!! 😀😀😀 In what seems to be a previous life, I was a graphic designer, and I found that icons or symbols are much more effective than words! My boss, who trained me, used to say "Mariya, it's just a sign, nobody reads it!" and even though it was a joke - it very accurately describes reality! Our mind tends to remember things that stand out and seeing someone talk is not very memorable (unless they talk about something extraordinary!... but I don't think GUI apps fit that category hahahaha 😅) If find that adding some visual illustrations provides an extra layer of explanation, better captures our attention and as a result - helps us remember 🙂 I really appreciate your feedback and I'm super glad you find my examples simplistic!!! 😊 Maria's of the world unite!!! 💪💪💪
@mary_040
@mary_040 Жыл бұрын
@@PythonSimplified yes! i 100% agree. Especially for things you can't see, which we have a lot in the IT world, like processes that happen 'behind the scenes'. It's essential for someone like me to see visuals. Keep up the amazing videos and know all your work is so appreciated!
@jannatgaoshiqqalb3598
@jannatgaoshiqqalb3598 Жыл бұрын
@@PythonSimplified Hi Maria, I wonder if you could build a gui program that locks an exe app with given password by user and when user wants to enter that exe app, a form should asks for user a password to enter that exe app?
@Desafecto
@Desafecto 6 ай бұрын
It's complex, but you explain it so well that it seems very simple. I love your videos!
@sviatkey
@sviatkey 8 ай бұрын
I am speechless. What an amazing and big job done for this tutorial!
@chronage4403
@chronage4403 Жыл бұрын
Hello Mariya, I just discovered your channel today and I love how descriptive you are with every necessary task! I've been developing fun software projects over the years as more of a hobby but mainly in Visual Basic 6.0. I figured it was time to start learning Python since it appears to be the most popular and I've found that in theory it is much easier than VB6.0 the way it is structured, but it's still going to be a learning curve for sure! I believe your content will help me learn Python quickly and I would just like to say thank you very much, and keep up the great work! I Liked and Subscribed! :)
@vedapranav7750
@vedapranav7750 10 ай бұрын
I'm Also
@SweetEater007
@SweetEater007 9 ай бұрын
Thank you so much! I've been struggling with this for days and then I follow your video set by step and it works perfectly!
@tanultembhekar3719
@tanultembhekar3719 Жыл бұрын
Thank you for creating such an informative and helpful video on converting GUI app to a real program using Python to exe to setup wizard. Your explanation was clear and concise, and the step-by-step demonstration made it easy to follow along. I was able to successfully convert my own GUI app using the PyInstaller and Inno Setup tools, and I couldn't have done it without your guidance. Your video has been a valuable resource for me and I appreciate the time and effort you put into creating it. Once again, thank you for sharing your knowledge and expertise with us. Looking forward to more informative videos from you in the future.
@user-yq6gz9qq3m
@user-yq6gz9qq3m 10 ай бұрын
Thank you Mariya. I'm a big fan, I love the way you deliver your tutorials.
@alpcetinkaya3656
@alpcetinkaya3656 Жыл бұрын
I have been following your tutorials for a very long time. All are very helpful and really python simplified. Thank you and good luck.
@PythonSimplified
@PythonSimplified Жыл бұрын
Thank you so much, Alp!!! Glad you enjoy my videos!! 😃😃😃
@rickyusuf8696
@rickyusuf8696 7 ай бұрын
This is gold, Mariya! I haven’t tried it yet, but I e seen plenty of people frustrated with building up the app. I’ll definitely give it a try!
@nickmarshallvfx
@nickmarshallvfx Жыл бұрын
It's hard to get this sort of content, great job, please keep making more on this, there are a lot of people who are very interested in distributing their own Python applications!
@KhalidThwiny
@KhalidThwiny Жыл бұрын
Every time I watch one of your videos, I learn something new. Thank you very much for all your efforts and for sharing your knowledge! 🌹
@kamertonaudiophileplayer847
@kamertonaudiophileplayer847 Жыл бұрын
You have a talent to present the information very clearly and easy to understand. I wish you had an expertise beyond Python.
@dogustabiyat
@dogustabiyat 10 ай бұрын
This year it was my 1st year in Computer science and we did Python these feedback you give is amazing thank you in advance I learn new things everyday now on holidays.
@paulmoss4199
@paulmoss4199 Жыл бұрын
Only recently discovered your channel, thank you so much for the tutorials, you are my favourite Python channel from now on !!👍
@PythonSimplified
@PythonSimplified Жыл бұрын
Yeeeyy!!! Super happy to hear, Paul!! Thank you so much and welcome aboard! 😃😃😃
@jenglish1986
@jenglish1986 3 ай бұрын
Awesome video. Like code you are so concise. No distractions and you cover a lot of ground. Having watched hundreds of programming videos I must say this was the best I’ve seen. Please keep making projects!
@PythonSimplified
@PythonSimplified 3 ай бұрын
Thank you so much for the incredible feedback!! Super happy you like my work! 😀😀😀
@LeftoverBeefcake
@LeftoverBeefcake Жыл бұрын
This is perfect! I have some python programs I've been wanting to distribute and now I have the way to do it. Thank you for your excellent tutorials, you are such an awesome teacher. :)
@PythonSimplified
@PythonSimplified Жыл бұрын
Yeeey! I thought you might find it useful! 😉 Thank you so much for the awesome comment and let me know how everything turned out! 😊
@johnnyandrade241
@johnnyandrade241 Жыл бұрын
Hi Mariya. Thanks so much for this video. I just installed and run my app in my second pc and everything went perfectly. I was so happy to see it running. Thanks again
@tenamsb686
@tenamsb686 Жыл бұрын
Thanks for the turtorial!! ☺️ I tried doing it by myself a few years ago - I failed miserably. Haha. So, I got an idea about the hard-work you would have to put in to make this all work. My God!
@ChrisM541
@ChrisM541 Жыл бұрын
Thanks for this extremely useful upload. You have a very positive outlook, a trait that's always nice to see and clearly helps with viewer engagement. Well done.
@_superlearner_
@_superlearner_ 10 ай бұрын
Found a great channel where the presenter shows each step in details. Subbed, liked and commented.
@giesthaus
@giesthaus Жыл бұрын
Mariya, You always have the best videos/tutorials. Thank you.
@animatnetic2545
@animatnetic2545 Жыл бұрын
I have never seen a tutorial that is so detailed and even inclusive of so many different scenarios that makes me save hours worth of time researching to debug on my own. tysm!!!
@Screwball123
@Screwball123 Жыл бұрын
Really got my python skills to another level 😀 THANK YOU!
@user-hg7qw3pl7o
@user-hg7qw3pl7o 4 ай бұрын
It is too good to be true to see a person on youtube making things simple for people. I was stuck on creating a setup wizard until i found your video and the way you explained really touched my heart! Thanks BTW Can i send you my setup wizard so you can play my game! Please let me know if i can!
@t3rmin8or9
@t3rmin8or9 Жыл бұрын
what an awesome tutorial i have seen alot of tutorials on this but i have to say this is by far the most in depth concise tutorial that i know of to date i salute you
@ellukayou
@ellukayou Жыл бұрын
Thank you so much, I am developing a warehouse app and didn't find a tutorial for people like me. Thank you!
@thecker9
@thecker9 3 ай бұрын
Holy cow this was super helpful and well explained. Thank you so much!
@peterthuo7
@peterthuo7 11 ай бұрын
This is the most helpful video I have ever watched since I started programming.
@jorgemacgenity1367
@jorgemacgenity1367 Жыл бұрын
Congratulations Mariya, your explanation is very clear. I wish I could learn Python and go as deep as you go.
@reshmah1497
@reshmah1497 27 күн бұрын
Thank you very much. Been searching everywhere for a proper way to package to exe file with installer. Found your useful video.
@sonu-jangir
@sonu-jangir 9 ай бұрын
This tutorial was very very helpful for me. Thank you so much for the video.❤🎉
@pr00009
@pr00009 5 ай бұрын
Milady ill slay the entire planet for you. bowing down to your extreme knowledge and experience
@MrNyamwanga
@MrNyamwanga Жыл бұрын
@Marija, thanks so much, this is a video that cannot be lost. Your channel is amazing.
@AngelXX0
@AngelXX0 Жыл бұрын
Hi Maria) Thanks for the useful video. I haven't programmed for 7 years and the last time I did it was in Pascal... And now I had to go back to this unpredictable track of programming errors, including errors when packing python code into an .exe executable. By the time I watched your video I had already remembered how to communicate with a respected personal computer, python is very simple, so with mastering the language had no particular problem, although I forget it as quickly. Already wrote the first version of the program, it's a program to summarize the graphs given by the points x and y on the Cartesian coordinate plane, it turns out that Microsoft Excel has no such action. So what I wanted to write about, when packing the .py file into an .exe I also had a problem! I solved it myself, but who knows, maybe I will step on the same rake as you, when updating the program, which came in your way. You did a great job and gave more information so that people like me really have less headaches. Thank you again! P.S.: English is not my native language, I apologize if I wrote somewhere not quite clear:)
@Ceez747
@Ceez747 Жыл бұрын
I cannot wait to get to this point. Working on my project.. fun times.
@Kennethlumor
@Kennethlumor Жыл бұрын
Aunty I love the way you are curious like me self, that's the question I asked me self always, but today I got the solution from you. God bless you so much
@aleksey2408
@aleksey2408 Жыл бұрын
Many thanks to you Maria for really useful information. You're the best!🤘
@dancordoba7777
@dancordoba7777 Жыл бұрын
Thanks for the guide, I didn't know inno setup, thanks to you now I do😄
@hachetrescomacatorce2340
@hachetrescomacatorce2340 9 ай бұрын
woow hace rato que no veia este canal, gran contenido como siempre, saludos desde colombia
@shygrammer
@shygrammer 2 ай бұрын
Fun stuff! this is exactly what I needed for a project I am working on. Coming from the Linux ecosystem, there we package apps a little different and as such, this would not have been easy to figure out on my own. many thanks champion!
@chetanpandey300
@chetanpandey300 9 ай бұрын
Thanks , i made a weather app using tkinter and i have created a setup file for it using this video. Thanks for this wonderful video . All the best for the future. ❤❤❤❤
@didiktri6770
@didiktri6770 9 ай бұрын
thank you mariya!!, very helped for beginner
@ramansinghthakur7085
@ramansinghthakur7085 2 ай бұрын
Very helpful...for a long time I was looking to build an app like this. Thank you.
@sh1rub4
@sh1rub4 Жыл бұрын
You are a gem, this was fun to watch!
@tvs3497
@tvs3497 7 ай бұрын
Very nice, a real gem to add to the toolchest of Programming the Computer for Fun and Profit.
@rh.m6660
@rh.m6660 Жыл бұрын
This is hype! Was looking forward to this one!
@tabascu_m
@tabascu_m 4 ай бұрын
Exactly the content I was looking for. Thank you
@PapadopoulosSotiris
@PapadopoulosSotiris Күн бұрын
Okay , thank you for this turotial. Yout really did a wonderfull job, and the part where you fix one-by-one the problems is actually the best so that new guys (like me) learn to follow a process of fixing!!!!
@JamesM608
@JamesM608 Жыл бұрын
Like your spirit, been watching you off and on for a year. Good stuff 👍
@PythonSimplified
@PythonSimplified Жыл бұрын
Thank you so much Jim! :)
@emanretsiger9343
@emanretsiger9343 Ай бұрын
Today I found your channel, watched the video and I liked you - I subbed, and commented (which I do rarely). I am a beginner Python learner but you make a complicated task look simple to understand and very enjoyable. Indeed! Python Simplified. Thanks, Maria for your efforts and that is much appreciated.
@PythonSimplified
@PythonSimplified Ай бұрын
Thank you for the incredible comment, and welcome aboard!! 😃😃😃 Best of luck on your Python journey! 💪
@BobbyCharlz
@BobbyCharlz 7 ай бұрын
Excellent and very informative. I learned so much by your manner of presentation and instruction. This video has helped me better understand and appreciate the next steps in my Dev journey. Subscribed!
@naresh2423
@naresh2423 8 ай бұрын
wow, u really deserve something valuable..
@SergejsDmitrijevs-jo2du
@SergejsDmitrijevs-jo2du 8 ай бұрын
Maria,Bravo!!!! Thanks a lots!
@rodrigoguerechit6993
@rodrigoguerechit6993 4 ай бұрын
This is exactly what I was looking for!!!!! thanks!
@abelpouillet5114
@abelpouillet5114 Жыл бұрын
Nice job , you explain it very well , i'm french and it's not easy for me to understand the english tutorials but not with you , continue to speak like that it's wonderfull .
@punkbuster2004
@punkbuster2004 Күн бұрын
That was a wonderfull turorial for beginners in python GUI's . Good job!!
@furkanozata6775
@furkanozata6775 6 күн бұрын
Vaowww 😍 . This tutorial is perfect. Thanks alot.
@Machiuka
@Machiuka 2 ай бұрын
Congrats for this awesome tutorial. I've learned a lot from it. Thank you!
@spencer3752
@spencer3752 Жыл бұрын
Thank you so much for this video. I've used pyinstaller for quite some time, but now I know how to make a setup file, which is quite a bit more professional! Now the only thing I need to figure out is how to add a digital signature to the program :) At 16:25 -- what you're being asked is if you want to associate file extensions with your program. For example, you might have `.txt` files "associated" with the program _Sublime Text_ so that Sublime Text is used to open files with that extension by default (or is available in the "open with" context menu when right-clicking text files) So, maybe users of your program want to save recipes to a file. Maybe your program can save them to files with a custom extension like `.recipe` -- then when users click on their `.recipe` files, your application will be launched with the file path provided as an argument.
@singelodux
@singelodux 18 күн бұрын
15:44 you can drag and drop folders, instead of use "Add folder" button. Thanks for the tutorial 😍
@sorocom7726
@sorocom7726 7 ай бұрын
Wow ,Amazing ,So knowledgeable its mind blowing!
@venjas5451
@venjas5451 11 ай бұрын
Hey, awesome video!! This is the first explanation and way that worked for my self-made program. A few things I needed to adapt was the requirements.txt file, which can be done when you are in the converter environment inside your folder where your .py program is and then you have to type in "pip freeze > requirements.txt". This creates the requirements.txt file needed for your own program. Additionally, if you want so save things into your program files without the user to search for a folder itself for example if you use "plt.savefig("figurename.png")" then you also have to use the resource_path() function such that you use "plt.savefig(resource_path("figurename.png"))". Hope this hepls for other that also struggled.
@Khalil-Artur
@Khalil-Artur 3 ай бұрын
Thanks. Also in my case it was necessary to change single '=' to '=='
@kushandhanushkakatukurunda3299
@kushandhanushkakatukurunda3299 7 ай бұрын
Great Video. Very Helpful to the progress of one of my projects. ❤ from 🇱🇰
@smalirizvi8026
@smalirizvi8026 Жыл бұрын
Wowww! Mariya this looks super easy. Well, its rather *you have made it* so easy for me to understand. Can't wait to use it for my streamlit apps. Absolutely amazing stuff 😍😍
@animemespirit1871
@animemespirit1871 Жыл бұрын
Bro this is for Kivy, KivyMD, Tkinter type of librabries who create GUI's, not for something like streamlit which gives you a website
@smalirizvi8026
@smalirizvi8026 Жыл бұрын
@@animemespirit1871 ohhh!!! Thanks for letting mW know that 😔
@vishnukumarcr762
@vishnukumarcr762 9 ай бұрын
this is very humble as well interesting to watch even though I dont want to use it :)
@HaidarHasani
@HaidarHasani Жыл бұрын
amazing, I was looking for such tutorial for so long
@MiguelFernandez-kk2li
@MiguelFernandez-kk2li 2 ай бұрын
Great video as everyone Maria does. Great teacher. Thanks. By the way, her talking is very well understood by non spoken english people.
@br41nb0x7
@br41nb0x7 Жыл бұрын
Great tutorial! I did get a bit of a jumpscare at 0:17 which was probably editing, but the mouse moving in the background had me think you might be haunted. o_o
@user-tp5qu1kj1j
@user-tp5qu1kj1j 10 ай бұрын
your videos are just wonderful. Your channel is my go to for all things python
@hookerhillstudios
@hookerhillstudios Жыл бұрын
Excellent content as always, thank you!
@HB-ys9rt
@HB-ys9rt 9 ай бұрын
You're just the best! Please, keep up the good work
@willi929
@willi929 8 ай бұрын
Perfekt! ❤
@ikon_works
@ikon_works 7 ай бұрын
wonderful video explained very well thanks this is very use full for real life cases , searching for this happy that finally found it keep up , thankyou
@4folds507
@4folds507 Жыл бұрын
I dont skip commercial for your videos, so i can help you as you helped me learning❤️
@PythonSimplified
@PythonSimplified Жыл бұрын
Thank you so much for the incredible support, 4Folds!!! Super happy you find my tutorials helpful!!!😃😃😃
@rafaelfernandes2791
@rafaelfernandes2791 7 ай бұрын
Thanks for the video. The a.datas is used to import files to the temp path that pyinstaller uses, as you put your files in the same folder as exe file, it will be fine in not importing the resources in spec, but if you import, then the files will be in the temp folder and your program will look for them there
@Gkchannel2332
@Gkchannel2332 Жыл бұрын
You're great! Very helpful, thanks😄
@rolandohernandez6627
@rolandohernandez6627 7 ай бұрын
Hola me gustó mucho tu tutorial en cómo lo explicas y todo me pareció super útil. Saludos desde México
@vepman13
@vepman13 Жыл бұрын
Super tutorial . Great job. 👋
@davidtindell950
@davidtindell950 Жыл бұрын
Thank U. Very detailed. I am using this procedure to distribute a new educational game for young children.
@marvio_rocha
@marvio_rocha Жыл бұрын
Hello, I 'm from Brazil, and loved yours tutorial in python. I'm developer that keep a ruby on rails to python and loved this language. Thank you so much for help us
@PythonSimplified
@PythonSimplified Жыл бұрын
Thank you so much for the lovely comment Marvio!! 😃 I'm super happy you enjoy my tutorials and most of all - the best programming language in the world!! 😁😁😁
@arbormori7569
@arbormori7569 Жыл бұрын
Thanks a lot. This knowledge was just not enough for me to write my applications. It remains to deal with license agreements, but I think I can handle this personally.
@ahmadmureed4739
@ahmadmureed4739 Жыл бұрын
i couldnt wait for this. Awesome. Super. thankyou so much for your Hardwork. You are one of the best . thank you
@SamB2112
@SamB2112 7 ай бұрын
Wow, this is amazingly well-made instructional video, the very best among those I have seen so far. Also exactly what I have ask myself about just today. Looks like KZfaq algorithm can now even read our minds. I'm subscribing and liking, definitely. (By the way, if I had been told in the early 80s when I, as a teenager, was playing with stone-age programming tools on TI-58C in AOS, that one day I would be learning programming from a girl, I would have considered it a good joke. And here we are, hihihi.)
@sanketkumar_coder
@sanketkumar_coder 9 ай бұрын
The Perfect One !
@bradleycondon6398
@bradleycondon6398 Жыл бұрын
So funny I was just thinking about setting up one of my scripts to be a .exe and the next day boom this video pops up on youtube. Thanks!
@PythonSimplified
@PythonSimplified Жыл бұрын
Perfect timing, eh?? 😉 Super happy you found it useful! I was actually supposed to release it a day before but decided to refilm the intro in the last moment 😅😅😅
@gillesarfeuille2503
@gillesarfeuille2503 Жыл бұрын
@@PythonSimplified Same Here! Thanks a thousand times! Would you recommend the same process for a React-Django app? (made front end with react and back end with Django...so wondering what is best for the next step to convert it to a PWA or exe file..wonder what would be the best method)
@hinimed6316
@hinimed6316 6 ай бұрын
easy, nice, and very helpfull ... thank you so match
@luandutra7298
@luandutra7298 5 ай бұрын
Honestly, I'm quite impressed with your organization in explaining the subject, and the video is really well made. You've gained a new follower.
@juggaberglund
@juggaberglund Жыл бұрын
Thanks for sharing. Your tutorials are really inspirational. Keep these great videos coming 😃
@PythonSimplified
@PythonSimplified Жыл бұрын
Thank you so much, Jörgen!!! I really appreciate it!! 😃😃😃 Will do!!! 💪
@rabcatz9013
@rabcatz9013 Жыл бұрын
You are awesome! I love this tutorial.
@Websitedr
@Websitedr Жыл бұрын
I'm gonna actually do this now with some stuff I have. Never really thought of distribution within an EXE/Setup for the non technical to use my stuff.
@mukeshyadav-un2jf
@mukeshyadav-un2jf Ай бұрын
Thanks a lot mariya for a perfect video. I followed this video and created installable file and installed successfully. When run this application for read and write txt file during run time then it did not worked for that. But txt file read and write works when run onefile application.
@ahmedyousuf1598
@ahmedyousuf1598 Жыл бұрын
Thank you mariya, i just done setup file ,repeat apk file android buildizer
@realCleanK
@realCleanK 7 ай бұрын
Thank you!!
@vdi23
@vdi23 Жыл бұрын
In the end I managed to make an executable with my project in python.😊 😁 Thx
@MrHuangjia
@MrHuangjia 9 ай бұрын
Thank you!
@itsme_...5601
@itsme_...5601 Жыл бұрын
hi,mariya sha! your tutorials are very very important for me,i'm just under devolping whatsapp user bot scripts but i'm just kid at 17age love you from sri lanka! 😙
@googleagent
@googleagent 7 ай бұрын
Loved every bit of this tutorial , thank you so much it helped me alot , subscribed and looking forward to more videos of yours in future
Let's all try it too‼︎#magic#tenge
00:26
Nonomen ノノメン
Рет қаралды 53 МЛН
skibidi toilet 73 (part 2)
04:15
DaFuq!?Boom!
Рет қаралды 33 МЛН
Convert Tkinter Python App to Executable (.Exe) File [pyinstaller]
9:11
Code First with Hala
Рет қаралды 121 М.
15 Python Libraries You Should Know About
14:54
ArjanCodes
Рет қаралды 351 М.
Python Code to Android APK with Flet | Test APK in Virtual Emulator
8:12
Henri Ndonko - TheEthicalBoy
Рет қаралды 7 М.
I use Drag and Drop to build modern Python Apps
14:08
Softlinks
Рет қаралды 38 М.
Convert Python to Android with WINDOWS & LINUX + Fix Common Bugs
18:59
Python Simplified
Рет қаралды 208 М.
5 Good Python Habits
17:35
Indently
Рет қаралды 310 М.
If __name__ == "__main__" for Python Developers
8:47
Python Simplified
Рет қаралды 374 М.
How about that uh?😎 #sneakers #airpods
0:13
Side Sphere
Рет қаралды 10 МЛН
Радиоприемник из фольги, стаканчика и светодиода с батарейкой?
1:00
Edit My Photo change back coloured with Bast Tech
0:45
BST TECH
Рет қаралды 334 М.