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

  Рет қаралды 493,167

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

Пікірлер: 567
@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: kzbin.info/www/bejne/n6W1fYWcqrGShrM ❗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: kzbin.info/www/bejne/b5q9fXekjMSprbc 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: kzbin.info/www/bejne/qGO9f2OjiamhhsU 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: kzbin.info/www/bejne/hZnNXnandrGlrc0 ❗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: kzbin.info/www/bejne/g5yqgqCQpLKoiK8 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): kzbin.info/www/bejne/a6Kyn618bLemhKM 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 😊😊
@talosong7409
@talosong7409 29 күн бұрын
I rarely comment on youtube videos, but I gotta mention just how much time I saved from the MEIPASS fix from your video. Absolute lifesaver.
@PythonSimplified
@PythonSimplified 28 күн бұрын
Yeeyyy!!! I knew folks will find it handy!! I also got stuck on it for a while until I finally figured it out 😉
@mattknezel8003
@mattknezel8003 6 ай бұрын
This was the most complete video on this topic I have found. Appreciate the great structure and clear instruction!
@ojaimark
@ojaimark 11 ай бұрын
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.
@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?
@dogustabiyat
@dogustabiyat Жыл бұрын
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.
@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!!!
@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!! 😃😃😃
@sviatkey
@sviatkey 9 ай бұрын
I am speechless. What an amazing and big job done for this tutorial!
@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!
@kamertonaudiophileplayer847
@kamertonaudiophileplayer847 Жыл бұрын
You have a talent to present the information very clearly and easy to understand. I wish you had an expertise beyond Python.
@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 Жыл бұрын
I'm Also
@jenglish1986
@jenglish1986 5 ай бұрын
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 5 ай бұрын
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! 😊
@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.
@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!
@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! 🌹
@peterthuo7
@peterthuo7 Жыл бұрын
This is the most helpful video I have ever watched since I started programming.
@user-yq6gz9qq3m
@user-yq6gz9qq3m Жыл бұрын
Thank you Mariya. I'm a big fan, I love the way you deliver your tutorials.
@Screwball123
@Screwball123 Жыл бұрын
Really got my python skills to another level 😀 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!!!!
@pr00009
@pr00009 7 ай бұрын
Milady ill slay the entire planet for you. bowing down to your extreme knowledge and experience
@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
@rickyusuf8696
@rickyusuf8696 9 ай бұрын
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!
@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! 😃😃😃
@Ceez747
@Ceez747 Жыл бұрын
I cannot wait to get to this point. Working on my project.. fun times.
@_superlearner_
@_superlearner_ 11 ай бұрын
Found a great channel where the presenter shows each step in details. Subbed, liked and commented.
@SweetEater007
@SweetEater007 11 ай бұрын
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!
@ellukayou
@ellukayou Жыл бұрын
Thank you so much, I am developing a warehouse app and didn't find a tutorial for people like me. Thank you!
@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
@ileaneclectic
@ileaneclectic 11 күн бұрын
Absolutely fantastic! Thank you so much for slowly going step by step and alerting us to potential errors!
@prakritishree9883
@prakritishree9883 14 сағат бұрын
Thank you so much for such a clear ,step-by-step and descriptive video, not only you gave steps to follow but also gave us an approach to handle different errors...very grateful for such a wonderful explanation
@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
@Desafecto
@Desafecto 8 ай бұрын
It's complex, but you explain it so well that it seems very simple. I love your videos!
@reshmah1497
@reshmah1497 2 ай бұрын
Thank you very much. Been searching everywhere for a proper way to package to exe file with installer. Found your useful video.
@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:)
@jorgemacgenity1367
@jorgemacgenity1367 Жыл бұрын
Congratulations Mariya, your explanation is very clear. I wish I could learn Python and go as deep as you go.
@giesthaus
@giesthaus Жыл бұрын
Mariya, You always have the best videos/tutorials. Thank you.
@davidkirk831
@davidkirk831 20 күн бұрын
After Struggling to understand how to package my application this tutorial really helped me. Some of my steps were a bit different as I didn't need to set up my assets folder but.. the step of ensuring you add the folder to this step DestDir: "{app}/ was crucial. Thank you!
@sh1rub4
@sh1rub4 Жыл бұрын
You are a gem, this was fun to watch!
@tvs3497
@tvs3497 9 ай бұрын
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!
@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.
@venjas5451
@venjas5451 Жыл бұрын
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 5 ай бұрын
Thanks. Also in my case it was necessary to change single '=' to '=='
@thecker9
@thecker9 5 ай бұрын
Holy cow this was super helpful and well explained. Thank you so much!
@MrNyamwanga
@MrNyamwanga Жыл бұрын
@Marija, thanks so much, this is a video that cannot be lost. Your channel is amazing.
@JamesM608
@JamesM608 Жыл бұрын
Like your spirit, been watching you off and on for a year. Good stuff 👍
@PythonSimplified
@PythonSimplified Жыл бұрын
Thank you so much Jim! :)
@user-hg7qw3pl7o
@user-hg7qw3pl7o 6 ай бұрын
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!
@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.
@tommy8638
@tommy8638 13 күн бұрын
Amazing thanks so much. Been using this approach successfully a lot!
@dancordoba7777
@dancordoba7777 Жыл бұрын
Thanks for the guide, I didn't know inno setup, thanks to you now I do😄
@emanretsiger9343
@emanretsiger9343 3 ай бұрын
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 3 ай бұрын
Thank you for the incredible comment, and welcome aboard!! 😃😃😃 Best of luck on your Python journey! 💪
@chetanpandey300
@chetanpandey300 11 ай бұрын
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. ❤❤❤❤
@CreationTVstation
@CreationTVstation Ай бұрын
really great tutorial! you explained it so well, and i like the extra tips in planning ahead for file organization! i wanna go try this myself! thank you!
@rafaelfernandes2791
@rafaelfernandes2791 8 ай бұрын
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
@HaidarHasani
@HaidarHasani Жыл бұрын
amazing, I was looking for such tutorial for so long
@ramansinghthakur7085
@ramansinghthakur7085 4 ай бұрын
Very helpful...for a long time I was looking to build an app like this. Thank you.
@Sk8Muski
@Sk8Muski 15 күн бұрын
Thank you so much for all the information, I had spent a lot of time working on this, but you make it look so easy, 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 .
@tabascu_m
@tabascu_m 6 ай бұрын
Exactly the content I was looking for. Thank you
@punkbuster2004
@punkbuster2004 Ай бұрын
That was a wonderfull turorial for beginners in python GUI's . Good job!!
@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!!!😃😃😃
@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!! 😁😁😁
@davidsonaraujo4780
@davidsonaraujo4780 Ай бұрын
Parabéns Mariya, seu vídeo explicou de forma simples e objetiva! Continue assim🎉👏
@aleksey2408
@aleksey2408 Жыл бұрын
Many thanks to you Maria for really useful information. You're the best!🤘
@furkanozata6775
@furkanozata6775 Ай бұрын
Vaowww 😍 . This tutorial is perfect. Thanks alot.
@rodrigoguerechit6993
@rodrigoguerechit6993 5 ай бұрын
This is exactly what I was looking for!!!!! thanks!
@hookerhillstudios
@hookerhillstudios Жыл бұрын
Excellent content as always, thank you!
@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.
@shygrammer
@shygrammer 3 ай бұрын
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!
@user-tp5qu1kj1j
@user-tp5qu1kj1j 11 ай бұрын
your videos are just wonderful. Your channel is my go to for all things python
@MiguelFernandez-kk2li
@MiguelFernandez-kk2li 4 ай бұрын
Great video as everyone Maria does. Great teacher. Thanks. By the way, her talking is very well understood by non spoken english people.
@EdwardTilley
@EdwardTilley Жыл бұрын
Great video Mariya!
@singelodux
@singelodux 2 ай бұрын
15:44 you can drag and drop folders, instead of use "Add folder" button. Thanks for the tutorial 😍
@HB-ys9rt
@HB-ys9rt 11 ай бұрын
You're just the best! Please, keep up the good work
@LynxNYC
@LynxNYC Жыл бұрын
Wow this is so awesome! Thanks for sharing!
@rabcatz9013
@rabcatz9013 Жыл бұрын
You are awesome! I love this tutorial.
@charlesx1156
@charlesx1156 7 ай бұрын
I'm passionate about everything you offer...
@sonu-jangir
@sonu-jangir 10 ай бұрын
This tutorial was very very helpful for me. Thank you so much for the video.❤🎉
@Machiuka
@Machiuka 4 ай бұрын
Congrats for this awesome tutorial. I've learned a lot from it. Thank you!
@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.
@Gkchannel2332
@Gkchannel2332 Жыл бұрын
You're great! Very helpful, thanks😄
@hachetrescomacatorce2340
@hachetrescomacatorce2340 11 ай бұрын
woow hace rato que no veia este canal, gran contenido como siempre, saludos desde colombia
@richiguana
@richiguana 11 ай бұрын
Simple&Perfect! 💯
@vdi23
@vdi23 Жыл бұрын
In the end I managed to make an executable with my project in python.😊 😁 Thx
@SergejsDmitrijevs-jo2du
@SergejsDmitrijevs-jo2du 9 ай бұрын
Maria,Bravo!!!! Thanks a lots!
@DimulyaPlay
@DimulyaPlay Жыл бұрын
I used NSIS for make setup file but it is much more complicated for use. Now I ll always use Inno for future versions of my projects Also I use this method to get root dir looks like a bit easier for me: if getattr(sys, 'frozen', False): self.application_path = os.path.dirname(sys.executable) elif __file__: self.application_path = os.path.dirname(__file__) Thank you for this video! 😍
@unixtreme
@unixtreme 10 ай бұрын
yeah this approach is a lot better and cleaner, you don't want to litter your entire code for this, just have the resources path stored in a config somewhere that changes when you are building. Or even better setup a specific config used only for building.
@vishnukumarcr762
@vishnukumarcr762 11 ай бұрын
this is very humble as well interesting to watch even though I dont want to use it :)
@didiktri6770
@didiktri6770 11 ай бұрын
thank you mariya!!, very helped for beginner
@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.
@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)
@diogoguedes
@diogoguedes Ай бұрын
Genius. Wish there was a similarly good video for mac users
@princegoswami8464
@princegoswami8464 5 ай бұрын
to correct the path you can use r string format eg - r"a/vg" will automatically convert to -> "a\\vg"
@spencera3202
@spencera3202 Жыл бұрын
So helpful OMG! Thank you!!!
@libratico
@libratico Жыл бұрын
great video, just what i was looking for, thanks
@ahmedyousuf1598
@ahmedyousuf1598 Жыл бұрын
Thank you mariya, i just done setup file ,repeat apk file android buildizer
@BobbyCharlz
@BobbyCharlz 8 ай бұрын
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!
@mwabayadaniel4192
@mwabayadaniel4192 Жыл бұрын
this means alot had no idea it was done this way thanks for help means alot to me
@rachidben-azouz793
@rachidben-azouz793 Жыл бұрын
Thanks a lot Mariya 👍
Вечный ДВИГАТЕЛЬ!⚙️ #shorts
00:27
Гараж 54
Рет қаралды 14 МЛН
Неприятная Встреча На Мосту - Полярная звезда #shorts
00:59
Полярная звезда - Kuzey Yıldızı
Рет қаралды 7 МЛН
Alat Seru Penolong untuk Mimpi Indah Bayi!
00:31
Let's GLOW! Indonesian
Рет қаралды 15 МЛН
LOVE LETTER - POPPY PLAYTIME CHAPTER 3 | GH'S ANIMATION
00:15
Create Stunning Python GUIs in 10 Minutes With Drag & Drop
11:38
Coding Is Fun
Рет қаралды 20 М.
How to Convert a Streamlit App to an .EXE Executable
8:20
Fanilo Andrianasolo
Рет қаралды 39 М.
There’s a fast new code editor in town
3:58
Fireship
Рет қаралды 1 МЛН
Software engineer interns on their first day be like...
2:21
Frying Pan
Рет қаралды 13 МЛН
Convert Tkinter Python App to Executable (.Exe) File [pyinstaller]
9:11
Code First with Hala
Рет қаралды 133 М.
Simple Machine Learning GUI App with Taipy and Tensorflow
30:52
Python Simplified
Рет қаралды 166 М.
If __name__ == "__main__" for Python Developers
8:47
Python Simplified
Рет қаралды 385 М.
YOTAPHONE 2 - СПУСТЯ 10 ЛЕТ
15:13
ЗЕ МАККЕРС
Рет қаралды 178 М.
Хотела заскамить на Айфон!😱📱(@gertieinar)
0:21
Взрывная История
Рет қаралды 5 МЛН
Как слушать музыку с помощью чека?
0:36