+ 1

how to save any program in python for end user?

save Python program for end users

24th Apr 2017, 10:24 AM
awk
3 Answers
+ 11
what ide do you use ? if you are using pycharm you can save your file to name.py if you want to make .exe file you can use py2exe : py2exe turns Python programs into packages that can be run on other Windows computers without needing to install Python on those computers. Python is needed on the computer where py2exe itself is run because py2exe is a Python program and it includes parts of Python in the package that isbuilt.
24th Apr 2017, 10:42 AM
Agus Mei
Agus Mei - avatar
+ 2
You can save your file with the python commands with a .py extension. Then, it can be run using "Python filename.py"
24th Apr 2017, 10:39 AM
Nelson Urbina
Nelson Urbina - avatar
+ 1
You can also use pyinstaller. I prefer pyinstaller in creating exe files for distribution.
24th Apr 2017, 11:36 AM
Clint Carr
Clint Carr - avatar