user2340615
user2340615

Reputation: 171

How to convert python files to executables?

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

Answers (2)

Adem Öztaş
Adem Öztaş

Reputation: 21516

You can use py2exe

For the more information http://www.py2exe.org/index.cgi/Tutorial

Upvotes: 2

Reed Copsey
Reed Copsey

Reputation: 564931

You should be able to use cx_Freeze to convert a Python 3.3 file to an executable.

Upvotes: 2

Related Questions