Python Forum
How do i turn my program into a .exe - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: How do i turn my program into a .exe (/thread-24449.html)



How do i turn my program into a .exe - julio2000 - Feb-14-2020

Hey,
So I've created this program that I want to release to other people. But I would like to change it to a .exe, instead of a .py. Does someone know how to do this?

Thanks in advance!


RE: How do i turn my program into a .exe - snippsat - Feb-14-2020

Pyinstaller has been for a while(many years) a very good Python library for this.
There are a lot of Thread/Posts on this forum or web about this so search.
The documentation of Pyinstaller is also really good.
My lasted was a test of Pygame to .exe with Pyinstaller,one post of many about the subject.