AdrienW
AdrienW

Reputation: 3442

How to create executable with Python 3.5 on Windows?

I'm starting with Python so I downloaded the 3.5 version on my Windows 7 (64), and developped a small app in Eclipse Luna (4.4.1) with PyDev and the Tkinter library. It has only 4 modules and a text file.

I'd like to know how I could export an executable version of my project, like when you do File>Export>Runnable Jar File with a Java project. Is there a way to do this in Eclipse for Python projects ?

I have already tried tools like py2exe or cx_Freeze, but they tell me they have to be used respectively with Python 2.7 and 3.4... Does there exists some piece of software that could do the same for Python 3.5 ?

Thank you very much for any piece of help you could bring.

Upvotes: 1

Views: 1435

Answers (1)

Mathias711
Mathias711

Reputation: 6658

PyInstaller (version 3.2) works for Python 3.5, according to their website.

Upvotes: 1

Related Questions