Standalone Python EXE Executable - Python Tkinter GUI Tutorial #40

Sdílet
Vložit
  • čas přidán 17. 02. 2020
  • In this video I'll show you how to turn your Python tKinter program into a standalone executable exe file that you can share with your friends, or sell on your website.
    There are many ways to make a .exe file out of a tKinter program. In this video I'll show you the fastest and easiest method using pyinstaller.

Komentáře • 767

  • @bitpilot79
    @bitpilot79 Před 4 lety +680

    Use the flag --windowed, so that black console window won't show up.

    • @Codemycom
      @Codemycom  Před 4 lety +71

      perfect! thanks!

    • @Kroenenprime
      @Kroenenprime Před 4 lety +19

      You can also just save your file as .pyw it does the same

    • @Codemycom
      @Codemycom  Před 4 lety +40

      @@Kroenenprime That only works if you already have python installed on your computer...most people don't.

    • @davitvekua6878
      @davitvekua6878 Před 4 lety +1

      oohh man thank u so much!

    • @danielrichter4103
      @danielrichter4103 Před 4 lety

      Thanks that was really helpful

  • @MadhuKraft
    @MadhuKraft Před 4 lety +191

    Before you turn it into a exe, rename the file to .pyw instead of .py
    That will get rid of the command prompt that always shows up

    • @Codemycom
      @Codemycom  Před 4 lety +76

      or just use the -w flag when building the exe

    • @mohammadrezasharif843
      @mohammadrezasharif843 Před 2 lety +1

      I tried this but "Ordinal Not Found" error shows up when I run the exe.

    • @unknowngalaxy7850
      @unknowngalaxy7850 Před 2 lety +1

      Thank you very much

    • @Brimstoned_
      @Brimstoned_ Před 6 měsíci +1

      NO in the pyinstaller just use --noconsole and no console will apear

    • @youzuko
      @youzuko Před 6 měsíci

      @@Brimstoned_ i tried to use the --noconsole but windows flagged it as virus. same with -w. no idea why, it works just fine without getting rid of the console.

  • @popotoITA
    @popotoITA Před rokem +32

    in order to avoid the "command window" to pop up when you run the executable, you just have to write "-- noconsole" along with the pyinstaller call

  • @Matt-ke7mc
    @Matt-ke7mc Před 4 lety +21

    This was great!! So straightforward and useful. I was able to build a front end GUI app for my python script at work because of this video. Awesome job man.

  • @benjaminodriscoll6605
    @benjaminodriscoll6605 Před 4 lety +3

    Thanks for the video and the entire playlist, it has been so helpful! Subscribed and liked!

  • @Sergio-td7mn
    @Sergio-td7mn Před 4 lety +3

    I watched many parts of the series and its awesome, thank you John!

  • @AdAstraCan
    @AdAstraCan Před 3 lety

    I just signed up for the full membership. Thanks for making useful videos.

  • @MitraElectronics
    @MitraElectronics Před 3 lety +1

    Thanks for this tutorial, I had been trying to do that since ages. Really appreciate your work.

  • @stephenwilson0386
    @stephenwilson0386 Před 2 lety +2

    I'm having issues with Windows Defender flagging my exe file as a Trojan. It only seems to happen when I use the --onefile flag, but it defeats some of the purpose of packaging my script if my coworkers have to keep the two directories as they are in order to use the program. Sending one executable file would be much cleaner.
    Does anyone have any suggestions?

  • @allenhirahara2242
    @allenhirahara2242 Před 3 lety

    THANK YOU. I was trying to look up how to make an executable .exe, but the program that you used to make the .exe actually helped me with my program. I had a problem with inputting the text into the same window and the "myLabel = tkinter.Label(root, text) " helped. Thank you!

  • @hareknowsnone
    @hareknowsnone Před 4 lety +2

    Try to run this 'standalone program' in any other windows computer( if possible except windows10 ) . It does not work for me at least.
    Also will it work on other os?

  • @vishalsalvankar9373
    @vishalsalvankar9373 Před 4 lety +2

    Hey John,
    I was successful in creating python exe file, but while using tjr same file on another computer, it got detected as a virus. Basically any exe file which i create is shown as a virus. How can i solve this problem other than adding the file as exception in any antivirus software?

  • @Codemycom
    @Codemycom  Před 4 lety

    ▶️ Watch Entire Tkinter Playlist ✅ Subscribe To My CZcams Channel:
    bit.ly/2UFLKgj bit.ly/2IGzvOR
    ▶️ See More At: ✅ Join My Facebook Group:
    Codemy.com bit.ly/2GFmOBz
    ▶️ Learn to Code at Codemy.com
    Take $30 off with coupon code: youtube1

  • @jacinthompeteye3037
    @jacinthompeteye3037 Před 2 lety +9

    Great tutorial, we can also add '--noconsole' in the command prompt to hide the black window

  • @arturdashev5353
    @arturdashev5353 Před rokem +1

    IT'S ALWAYS THE UNDERRATED VID THAT'S LEGIT! THANK YOU!

    • @Codemycom
      @Codemycom  Před rokem +1

      Thanks...but I wouldn't call a video with 200,000+ views underrated ;-)

  • @moazzamqureshi7150
    @moazzamqureshi7150 Před 4 lety +6

    What if our program uses some images ? can we still run the exe file isolated without those ..? since i got an error

    • @akshitmiglani5419
      @akshitmiglani5419 Před 3 lety

      You'll have to put that image into the temp directory where the back-end files of stand-alone app are created.

  • @slasaru
    @slasaru Před 3 lety

    Thank you so much for the info that I can clean up everything besides the main file!

  • @dandisinfographicchannel1346

    hello, i have a problem with this method when i try to run the program on my other pc

  • @sammiyin3516
    @sammiyin3516 Před 4 lety

    Suuuuuuuuuuuuper helpful tutorial. Thank you John!

  • @unknowngalaxy7850
    @unknowngalaxy7850 Před 2 lety

    Thanks for this tutorial! Finally my school project has been completed. 🙂

  • @giuseppecipolletta1443
    @giuseppecipolletta1443 Před 3 lety +4

    Hi John! Thanks for this! What if I have a picture in my code? Is there a way to specify it as we do with the icon?

    • @giuseppecipolletta1443
      @giuseppecipolletta1443 Před 3 lety

      Ive tried with --add-data but it doesn't seem to work: pyinstaller.exe --onefile --icon=Icon3.ico --add-data="Image.png;img" PySprings.py

  • @mdzohaib7368
    @mdzohaib7368 Před 4 lety

    Sir i created a weather app which you shown in 24th video in your playlist but i did some changes adding images of cloud and other weathers but when i try to convert it to exe file its showing error. I think thats probably due to images of clouds and all. Can you tell me command to rectify it.

  • @sarthakgoel7697
    @sarthakgoel7697 Před 4 lety

    What about if we have more than one window in our program with more ico files and png files

  • @007adityadwivedi
    @007adityadwivedi Před 3 lety

    Hi, I am trying same thing.. But when running in other machine still its again asking me for install modules which I have used in my exe. Please suggest

  • @Elijah3_86
    @Elijah3_86 Před 2 lety

    Did you make a later videos for better ways to do this? Pyinstaller makes the program run really slowly on another computer

  • @RyanDanielG
    @RyanDanielG Před 2 lety

    wow cant believe I hadn't run across this before. thanks, mate!

  • @jimbowhitt3816
    @jimbowhitt3816 Před 2 lety +1

    hey, great video here helped me alot. However i have a image file in my code, which when i create a .exe it launches but flags a error saying the image can't be found. am i missing something here, in my code i have the 'my_img = ImageTk.PhotoImage (Image.open("image.png"))' which maps to the location of my image in my code and works when operating though python directly. when operate through .exe basiclly says "failed to execute due to unhandled exception: [Errno 2] no such file or directory: 'image.png'

  • @joselatorre5667
    @joselatorre5667 Před 3 lety

    I have a little problem, my app has images taken from an specific directory. If I want to distribute it, people would have to install these images too?. And if so... The python code takes the image from that specific directory, but for the client it would not be the same directory, so it would bring an error. Is there a way to get rid of this problem?

  • @manigandandmx
    @manigandandmx Před 2 lety +1

    Bitdefender antivirus is detecting the stand alone EXE file as virus and keeps on removing it as soon I create it. Please advise.

  • @tobias2688
    @tobias2688 Před 3 lety +1

    What can I do when my python file relies on some external libraries? Would I have to pack the whole library into the .exe file? Thanks!

    • @djremedy1694
      @djremedy1694 Před 3 lety

      Pyinstaller has the built in feature to sweep through your python script, find all the import statements, and then copy those libraries during the conversion process

  • @adotac
    @adotac Před 2 lety

    how will this work if my program needs to have atleast multiple scripts? do I just build from my main script?

  • @scoliidaeai493
    @scoliidaeai493 Před 3 lety +19

    save the .py file as a .pyw , it runs the exact same as a regular python file but runs without the shell window

  • @BrazybranButOutside
    @BrazybranButOutside Před 2 lety

    The computer I coded the .py file on, once turned into an .exe file, still works perfectly, until I move it to another computer for download. When I do so its detected as a virus. I would like to sell software soon so this is an issue I'd love to eliminate. I'm still learning, but to test converting .py into .exe I made a simple calculator program. Not very modern visually and not too many lines of code. But it still is flagged on other computers. Help plz!

  • @isurangacooray9238
    @isurangacooray9238 Před 3 lety +7

    You're the best sir ❤️ thanks a lot for this whole playlist

  • @vicesodan
    @vicesodan Před 2 lety +5

    Tip: Application won't start without icon next to it on another pc if you use an icon instead of tkinter default icon on its windows, check the path of the icon in python code also

  • @TaskForce141cod
    @TaskForce141cod Před 2 lety +7

    Adding --noconsole does the job perfectly!

  • @ShashwataSaha
    @ShashwataSaha Před 3 lety +1

    What if my python project got multiple files linked with eachother?

  • @somj5740
    @somj5740 Před 3 lety

    Please tell me if I have some text file which I am showing in this text widget then how to make exe

  • @FouadMohamed_Dragon.2033

    I am making a program in the Python language on the Tekinter library, and when I convert the program to an exe file, it does not record with me any record from the printer, while I am running from the editor, the recording takes place, and I do not know where the problem is exactly

  • @m_abhijit_
    @m_abhijit_ Před 3 lety +1

    What do to if i have many pictures embedded inside my tkinter gui , is it possible to create a standalone for that type of file which contains alot of pics packed ?

  • @Mirador1
    @Mirador1 Před 2 lety

    Is it impossible to save information in an external file with these standalone files? Like settings, etc. I mean, like internally.

  • @tomoyaokazaki9915
    @tomoyaokazaki9915 Před 3 lety +1

    Sir I made the app with pyinstaller I opened it in my pc its working totally fine but when I shared only the .exe file of my app to my friend
    then in his pc that app is not opening
    [He goes in the location where my app is saved and clicks it and installs it and then when he opens only that black command line window appears then after 2-3seconds the command line box disappears and the application window doesn't appears.]
    Help me fix the problem sir

  • @aklimaakterrimi3814
    @aklimaakterrimi3814 Před 3 lety

    Hey elder.. i have done everything, instead of running my exe , it shows error 'unhandled exception' .. what should i do?

  • @haseebali8139
    @haseebali8139 Před 4 lety

    hey john I use this method to make an executable file of flashcard app and a flashcard.exe is made but when I run a cmd window pop up and after some seconds it closes showing something traceback type error and the actual file is not run yet

    • @Codemycom
      @Codemycom  Před 4 lety

      use the -w flag when you compile it

  • @code6259
    @code6259 Před 3 lety

    your a boss sir i watched all your videos there amasing sirtenly with your dog

  • @varghapayandeh3024
    @varghapayandeh3024 Před 4 lety +1

    Thank you for the video. Of couse why not using the "--noconsole" argument to the command so it wouldn't create that console?

  • @rogerperez9856
    @rogerperez9856 Před 8 měsíci

    Hello, I have created an app in Python which must connect to a database, but I want to extract the credentials from the code and make an executable to put it into production. The problem is that one way or another the user has access to the credentials, whether they put them in the code or include the .env file with the executable. Anyway, I don't know what to do to prevent users from having access to the credentials, I would like to know how I can do so that only the app has access to the credentials. Greetings.

  • @nihalthannegedarapremaratn2352

    if it is a big program (with dashboard and other..mysql), can we run like this..?

  • @Seddik-hf4pc
    @Seddik-hf4pc Před 3 lety +1

    pyinstaller -w --onefile --icon=codemy.ico entry_height.py
    -w (to avoid cmd console)
    Thanks for tutorial man!

  • @sundancekid90
    @sundancekid90 Před 2 lety

    Thanks for the video it was a huge help! Now I have made my executable is there a way to update it? I can't seem to find a way to make changes without deleting the exe and installing again with the new source code.

  • @codegeassprogramming
    @codegeassprogramming Před 2 lety +1

    If we import other libraries the converted exe file do not have that libraries

  • @khaledkhalaf1884
    @khaledkhalaf1884 Před 2 lety

    Hi, I come back and see this video because after creating the exe file the tkinter entry dont accept the paste shortcut why is that? and how can I fix it?

  • @sinamobasheri3632
    @sinamobasheri3632 Před 4 lety

    like always thank you sir for your great videos
    i have questions i write some code to scraping a site. it have button called "get" to do that. i use selenium for scraping when i click on button it run scraping functions while scraping functions is running tkinter window show "not responding" massage what i must do 🤦🏻‍♂️
    again very thanks 🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻

  • @pranathipoojary9127
    @pranathipoojary9127 Před 3 lety

    The .py file I'm trying to change contains sqlite3 and the .exe file created won't work, but when I try it without any of the database stuff the .exe file works. I even tried placing the database file in the same folder as the .exe file but it still doesn't work. Is there something different for sqlite3?

    • @yerisfernandez5105
      @yerisfernandez5105 Před 3 lety

      Hi.. I did some programs with tkinter and sqlite3, I have no problems to convert to .exe
      In my case, the first time a run the .exe the program create the database file... So the app create the sqlite3 file in the same folder of .exe file... And everything works great.. hope this information can help you.

  • @matthewburton3469
    @matthewburton3469 Před 4 lety

    Just wondering if firebase is supported by pyinstaller because I am struggling to try and convert my .py file with tkinter gcloud and smtplib into a .exe

  • @mukulM2010
    @mukulM2010 Před 4 lety

    Hey I'm getting the "File not defined" or "File not found" error as I have images and sounds in my python code. How do set the file path of these images in my python code so that the executable works on any other computer?

    • @Codemycom
      @Codemycom  Před 4 lety

      Use absolute path's In your code, instead of 'file.mp3' type 'c:/whatever/file.mp3' ?

  • @manojkumarleo
    @manojkumarleo Před 4 lety

    Awesome Sir, This helps a lot.

  • @aayushgupta6914
    @aayushgupta6914 Před 2 lety

    Now using both --windowed and --onefile flags the exe file as a virus!! Anyway to handle that and hide that popup command prompt??

  • @ToxicRa1n4
    @ToxicRa1n4 Před 2 lety

    any insight on how to package Selenium with this? Thanks!

  • @NeooNovaa
    @NeooNovaa Před 6 měsíci

    The file that I installed needed SQLite database to work, and when I run the project I installed it can't connect to the database, how do I fix this?

  • @RDKCREATIONS
    @RDKCREATIONS Před 2 lety +1

    i have a json file in my project how can i do it

  • @uninho1985
    @uninho1985 Před 3 lety

    How can I do that when I use a tkinter GUI and selenium with a dir "User Profile" for my chrome profile?
    I keep getting the error "failed to executescript". I tried adding the folder, I tried adding it manually after compiling the .py file to .exe and so on. Nothing worked for me.
    Any tip?

    • @Codemycom
      @Codemycom  Před 3 lety

      sorry I don’t use selenium so I couldn’t say

  • @raghvendra87
    @raghvendra87 Před 4 lety +5

    Thank you Mr. White!

  • @nexgenofficial665
    @nexgenofficial665 Před 3 lety +13

    wowwww! i just made my first executable file! Thanks.

  • @flaviomonteiro1414
    @flaviomonteiro1414 Před 2 lety

    Hey I do belive adding --noconsole when generating the .exe does remove the black console window... I do not tested yet on a computer without python installed but if works let me know!

  • @alfoxgamer
    @alfoxgamer Před 4 lety

    Does someone know to how to sign the .exe , because I send test files to my friends to beta test and in other computers my program starts SmartScreen of windows or Avast, so i think it might seem like a virus to their computers.

  • @shakibrahatchowdhury626

    What would happen if the end user doesn't have all the dependencies available in their system? For example, someone downloads the exefile from internet and the user doesn't have phyton installed in the computer; what that still run?

  • @gbilo24
    @gbilo24 Před 2 lety

    Use thanks for this amazing free content!

  • @cyberdemon667
    @cyberdemon667 Před rokem

    My executables only work on the 64 bits version of Windows, how can I make executables for the 32 bits version?

  • @amitkore9344
    @amitkore9344 Před 3 lety

    Hi,
    Do you know other ways of deploying the application. like moving the exe to the server and calling the exe on client machines, so other users can't decode the exe (as there are ways to decode). considering use of exe in a organization, where i don't want users to see my code (specially credentials used in code like for database connection)

  • @himanshubhatti4717
    @himanshubhatti4717 Před 4 lety +2

    sir I did it..but problem is that when I double click on my final .exe file only black window opens not the GUI window

    • @Codemycom
      @Codemycom  Před 4 lety

      try the -w flag in the command

  • @msai3012
    @msai3012 Před 3 lety

    How to make exe file if i have database?? how can i include db to the end user?/

  • @officialkeeto
    @officialkeeto Před rokem +5

    -w (or --windowed, or --noconsole) This will get rid of the blank CMD from popping up during launch
    --name="" This will name the app differently from your . py file
    --icon= (note, if you have your images in sub folders you need to use the path to that folder. Example: images/lock.ico
    --onefile (this one is hit and miss. Sometimes I do without this one to get app running right)

  • @cheasteral7636
    @cheasteral7636 Před 3 lety +1

    Sir can I convert py to exe including sqlite3 database imported in my python app?

    • @sirfaboyt3395
      @sirfaboyt3395 Před 2 lety

      Do you have now a solution? I face the same problem right now... 11 Months later xD I hope you can help me now haha

  • @tejasgoyal9590
    @tejasgoyal9590 Před 4 lety

    Can anyone help?
    how to add dependencies to the single .exe?
    My program just opens a cmd for a second a closes automaticaly.
    No Display is obtained.
    Python 3.7.1
    PyInstaller 3.6

  • @paulwatterson5992
    @paulwatterson5992 Před 2 lety

    Thank You great video

  • @eugenecedis18
    @eugenecedis18 Před 4 lety

    Thanks. Well appreciated

  • @Rshers
    @Rshers Před 2 lety

    How do i change the icon when using the -m (No console)?

  • @anirudhpraveen7410
    @anirudhpraveen7410 Před rokem

    The exe file does not run on another system as the icon file is not present in the other system. Any solution for this?

  • @RameshAkula
    @RameshAkula Před 2 lety

    Getting this error while converting into executable file in mac OS:
    Traceback (most recent call last):
    File "/usr/local/bin/pyinstaller", line 6, in
    from PyInstaller.__main__ import run
    File "/usr/local/lib/python3.7/site-packages/PyInstaller/__init__.py", line 45, in
    import pkg_resources
    File "/usr/local/lib/python3.7/site-packages/pkg_resources.py", line 1479, in
    register_loader_type(importlib_bootstrap.SourceFileLoader, DefaultProvider)
    AttributeError: module 'importlib._bootstrap' has no attribute 'SourceFileLoader'
    (base)

  • @staytuned3092
    @staytuned3092 Před 3 lety

    Thanks a lot. Great video and helpful comments who made the black window disappear. It works for me just on 64bit Windows not on 32. Can I fix that somehow? Is there a way to make an APK file out of this?

  • @elysonpanolino1162
    @elysonpanolino1162 Před rokem

    Is there a way that I can do this even deleting the image file?

  • @Se_1364
    @Se_1364 Před 4 lety +1

    my program need a text file to read from ..how to add that file ?

    • @Codemycom
      @Codemycom  Před 4 lety +2

      how to add a text file? just save a text file in your directory...

  • @CodeWithSamarthJ
    @CodeWithSamarthJ Před rokem

    Can someone help as I have already downloaded but the file open and closes in a second .So how do i fix it?

  • @christiankusi2974
    @christiankusi2974 Před 3 lety

    need your help
    i created a exe file with pyinstaller but each time i open it close immediately but when i run it from the PyCham IDE it works. please help me convert it into an exe file

  • @Lweirday
    @Lweirday Před 3 lety

    what should i do and how to use pyinstaller if i have one python file and one folder contain database and other folder contain images??????

  • @JS-ik4kb
    @JS-ik4kb Před 3 lety

    does user need to install phyton at thier end or they can use it as a desktop application without installing phyton?

  • @Zhisaoka
    @Zhisaoka Před 2 lety

    Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding
    any help?

  • @giancarlo.sotelo
    @giancarlo.sotelo Před 4 lety

    I tried to use 'Pandas' and at the moment I click on the .exe file inside 'dist' folder a error message pops up saying 'No module named pandas'. But I have installed pandas on my virtual environment. Somebody any clue that can help me? thanks.

  • @icodeint2780
    @icodeint2780 Před 3 lety

    I did all, but when I click on the exe, I have the console only the poo open, then shut off after seconds, I have tkinter and other modules used

  • @sinuheso
    @sinuheso Před 3 lety +1

    Hi there,thanks for your videos. I have a question, im working in a GUI using tkinter, the python file size is 257 KB. When i create executable using pyinstaller, the size of the GUI is 100 MB. What could be the reason?

    • @Codemycom
      @Codemycom  Před 3 lety +1

      exe files are bigger. that's common

    • @7s9n
      @7s9n Před 2 lety

      You must create a virtual environment for your project 🙂

    • @sinuheso
      @sinuheso Před 2 lety +1

      @@7s9n Thank you

    • @7s9n
      @7s9n Před 2 lety +1

      @@sinuheso Your welcome 💛

  • @x6Blade9x
    @x6Blade9x Před 3 lety

    This application can be ran on a computer that hasn't installed Python and set the file path ?

  • @carlosortega7363
    @carlosortega7363 Před 3 lety

    My Command Prompt does not recognize "pip" install unless I am in the directory with pyinstaller. Is that how it's supposed to work? Its seems like in all of the examples they just run "pip install pyinstaller" from wherever.

    • @Codemycom
      @Codemycom  Před 3 lety +1

      No, you need to reinstall python. Click the "add python 3.9 to path" box during installation

    • @carlosortega7363
      @carlosortega7363 Před 3 lety

      @@Codemycom That worked, thanks!

  • @junmarcado445
    @junmarcado445 Před 10 měsíci

    Thank you very much sir.

  • @otisbeaumont6797
    @otisbeaumont6797 Před 4 lety +4

    Hey John,
    Thanks for your videos. I am on vacation leave and started learning Python and Tkinter on my own with the help of some Google searches and CZcams videos such as yours. Your Videos are super great!
    In a way, 'thanks for the pandemic lock down'.
    Well understand me.
    If you type a single - and a w (-w) after you typed the icon+"name".ico that command prompt will not show up.
    again, thanks for your videos.

    • @Codemycom
      @Codemycom  Před 4 lety +1

      Glad you're enjoying the videos! Yeah -w works.

  • @kamisema
    @kamisema Před rokem

    so what is the professional way to create an executable file ? if pyinstaller isn't the best way ?

  • @fcmorena246
    @fcmorena246 Před 3 lety +2

    Thanks for the course, i really appreciate it, i kind of have a little problem.

    • @Codemycom
      @Codemycom  Před 3 lety

      ok?

    • @fcmorena246
      @fcmorena246 Před 3 lety +1

      @@Codemycom I lack self-confidence when coding.

    • @Codemycom
      @Codemycom  Před 3 lety +2

      @@fcmorena246 it comes with practice

    • @fcmorena246
      @fcmorena246 Před 3 lety

      @@Codemycom okay thanks
      Sir i have another problem
      Yesterday I created a text editing software with pyinstaller, when I run the program it pops up an error.
      (Fatal Error Detected
      Failed to execute script ...

  • @lemartien25000
    @lemartien25000 Před 4 měsíci

    Thanks for answering

  • @techwithdavid06
    @techwithdavid06 Před 3 lety

    Hey I don't know if pyinstaller works on python 3.6 because I'm getting an error when I try to pip install pyinstaller

  • @severinmarco
    @severinmarco Před rokem

    hi, is it possible to include an icon in the title bar so that when I create an executable .exe it is incorporated in it without having to carry it around every time? for example if I change pc?

    • @Codemycom
      @Codemycom  Před rokem

      yes, check the docs.

    • @severinmarco
      @severinmarco Před rokem

      @@Codemycom Thanks for your quick response, I followed your video, the problem lies in the fact that when I create the executable file and move it to another PC, if the .ico file is not present, it also returns an error because it cannot find the path

    • @Codemycom
      @Codemycom  Před rokem

      @@severinmarco exe are stand alone files. Read the docs to learn how to include your icon.