Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python 3.0.1 Executable Creator

Does anyone know if there's a windows Python executable creator program available now that supports Python 3.0.1? It seems that py2exe and pyInstaller, along with all the rest I've found, still aren't anywhere close to supporting 3.0 or 3.0.1.

Any help is greatly appreciated.

Edit: I guess I could downgrade the program to an older version of Python to make it work with py2exe. The hardest part will probably be using an older version of Tkinter.

Has anyone had luck with using py2exe or pyInstaller (or another windows-friendly program) to create an executable that uses Tkinter as well as subprocess.

I'm actually not sure how to get the directory my program will be installed into so subprocess can find the executable program I'm using.

like image 439
Tony Trozzo Avatar asked Mar 31 '09 18:03

Tony Trozzo


1 Answers

How about cx_Freeze. Seems to support python 3.0 and 3.1?

like image 177
Titusz Avatar answered Sep 25 '22 20:09

Titusz