I built a rather simple application in Python 3.1 using PyQt4. Being done, I want the application to be distributed to computers without either of those installed.

I almost exclusively care about Windows platforms, so my goal is to have a single executable file and maybe some resource files and .dlls in the end.

Having searched around, I came to the conclusion that

  • py2exe only supports Python up to version 2.7
  • pyinstaller only supports Python up to version 2.6
  • cx_Freeze does not work for me because I keep on getting the following error when trying to execute my successfully build binary:

Y:\Users\lulz\build\exe.win32-3.1>system_shutdown.exe
Traceback (most recent call last):
File "Y:\Program Files (x86)\Python\lib\site-packages\cx_Freeze\initscripts\Console3.py", line 27, in exec(code, m.__dict__)
File "Y:/Users/lulz/Documents/Coding/Python3/projects/System Shutdown/system_shutdown.pyw", line 5, in from PyQt4 import QtCore
File "ExtensionLoader_PyQt4_QtCore.py", line 16, in AttributeError: 'NoneType' object has no attribute 'modules'

So my problem is basically two problems here:

  1. Is there another way but cx_Freeze to build binaries with my configuration?
  2. If not, what might the cx_Freeze problem be?

I can provide more information on the second problem if necessary, like my call of cx_Freeze, my distutils setup script etc.

Thank you already for your help and comments.

link|improve this question
Good question. py2exe has been great for our purposes in the past. – Craig McQueen Nov 22 '09 at 12:49
feedback

1 Answer

up vote 9 down vote accepted

You can fix this by appending one line of code to freeze.py in your cx_Freeze package.

It is described here: http://www.mail-archive.com/cx-freeze-users@lists.sourceforge.net/msg00212.html

It worked for me at least :)

Cheers, Almar

link|improve this answer
I will try this as soon as I get to it and post my results. Thanks so far! – Matze Nov 24 '09 at 15:07
This finally worked, had to add the line of code you mentioned and include sip. Now there's the question left how to suppress the console window when starting my nice GUI application. – Matze Nov 26 '09 at 1:10
2  
Bit late, but for future readers, you can suppress the console window by freezing with the Win32GUI base. Example here. – Thomas K Feb 11 at 20:00
feedback

Your Answer

 
or
required, but never shown

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