How to share my Tkinter app with other users? How to share my Tkinter app with other users? tkinter tkinter

How to share my Tkinter app with other users?


I would use pyinstaller

run cmd.exe as Administartor and type:

pip install pyinstaller

then run with:

pyinstaller --onefile --noconsole --name your_script.py

This creates a single file executable which also includes your Python with all dependencies of your script/project.

If your projects contains external files like images/sounds you might need to edit the spec file as described here.


Full credit to the kid who made this video, it helped me out a lot when I had the same style of problem as you. https://www.youtube.com/watch?v=pzc4vYqbrukYou'll just have to go through the generated .zip file to find the generated .exe file.