+ 6
Convert Python code(.py) to exe
How can i convert my .py file into a runnable .exe file?
5 Answers
+ 41
if you need a one file or just little fixes
PyInstaller
if you need more fixes and edits,etc
cx_Freeze
+ 6
py2exe, cx_freeze or nuitka.
I tested all - py2exe and cx_freeze I can recommend as the easiest to use.
+ 4
py2exe works fine.
https://stackoverflow.com/a/49155
+ 2
I had problems with py2exe, as it was a bit outdated for python 3.5, i would recommend cx-freeze though
+ 2
ty guys