I've made my first Python program, using Python 3.2. Now I'm trying to figure out how to make it an executable.

I pretty much only need it for Windows only. I've searched as much as possible and found out that py2exe doesn't support Python 3. cxfreeze does, but I can't figure out how to make a single executable of my program with it. I need it as a portable one-file exe.

Please bear with me as I am a total newcomer :) Any help is appreciated.

link|improve this question

I think you'd have to use cx_freeze along with some tool like VMWare ThinApp to package Python and your executable together in one executable. – agf Sep 15 '11 at 5:48
I used cx_Freeze, then bundled the files into an installer using Inno Setup. It doesn't make a portable exe, because you have to install it, but it's quite simple. – Thomas K Feb 11 at 19:55
feedback

1 Answer

You can compare py2exe folder structure with new python3, and make similar. Then you could use SFX idea to store these folders like libraries, python script and interpreter and set script for SFX to just launch your application. As I remember, this is possible in WinRar, and as I think now, in other archivers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.