When I use cxfreeze in Ubuntu, it automatically compiles the python script to a Linux executable. I've looked through the documentation extensively, and I can't find a way to freeze the script into a .exe for the purposes of running the program on a Windows machine. Can this be done-?

link|improve this question
You'd probably be better off installing the correct versions of your dependencies on a Windows machine and then running cxfreeze there. They have a downloaable Windows installer for Pythons 2.5-3.2, x86/x32. – samplebias May 6 '11 at 18:55
feedback

1 Answer

You can do that.... but you'll have to install Wine (apt-get install wine) and then install in Wine the windows version of Python and all the python libraries your application needs, and then you'll be able to freeze your script into an exe for windows in your ubuntu box.

link|improve this answer
Thanks - I want to vote this up but it's telling me I can't until I have a certain amount of reputation. – Jonathan May 6 '11 at 19:30
@Jonathan, you should mark the answer as accepted if it works for you. – Velociraptors May 6 '11 at 20:52
feedback

Your Answer

 
or
required, but never shown

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