Reputation: 171
I have been looking all over for this, but they all seem to complicated! I want to convert a python 33 file to an executable so I can send give it to someone who hasn't got python.
Is there an online application that does it for you? Or a really simple converter that you download?
Simple answers please?
Upvotes: 2
Views: 114
Reputation: 21516
You can use py2exe
For the more information http://www.py2exe.org/index.cgi/Tutorial
Upvotes: 2
Reputation: 564931
You should be able to use cx_Freeze to convert a Python 3.3 file to an executable.
Upvotes: 2