Differences between revisions 1 and 2
Revision 1 as of 2005-07-04 00:05:15
Size: 409
Editor: grossac
Comment:
Revision 2 as of 2005-07-04 00:07:38
Size: 552
Editor: grossac
Comment:
Deletions are marked like this. Additions are marked like this.
Line 23: Line 23:

=== Reference ===
I found this tips here : [http://nerdierthanthou.nfshost.com/2005/03/image-resizer.html]

There is a full code sample.

Error message

  File "form1.pyc", line 11, in ?

  File "qt.pyc", line 9, in ?
  File "qt.pyc", line 7, in __load
ImportError: No module named sip

Solution

python setup.py py2exe --includes sip

setup.py

   1 from py2exe.build_exe import py2exe
   2 from distutils.core import setup
   3 
   4 setup( console=[{"script": "main.py"}] )

Reference

I found this tips here : [http://nerdierthanthou.nfshost.com/2005/03/image-resizer.html]

There is a full code sample.

Py2exeAndPyQt (last edited 2011-10-16 21:42:58 by MircoAckermann)