0

Guys does python have a compiller and how do I put my code on real life

7th May 2017, 11:23 AM
Ola Teju
Ola Teju - avatar
2 Answers
+ 3
You can make your .py files executable by wrapping (or freezing) them into .exe You can use py2exe, cx_freeze or nuitka modules for it. Just remember that since Python is an interpreted, not compiled language, in fact those files will carry the interpreter itself and all the modules you imported. Those combined can be a bit heavy (~20-40MB).
7th May 2017, 3:47 PM
Kuba SiekierzyƄski
Kuba SiekierzyƄski - avatar
+ 2
On windows you must download, linux or osx just type python in the terminal and the filename.
7th May 2017, 11:25 AM
SzabĂł GĂĄbor
SzabĂł GĂĄbor - avatar