Hi people! I have a problem about compiling my simple python script into a MAC app.
I have installed Python 2.5, wxPython2.8.7.1, PIL 1.1.6. After, py2app from svn trunk version 0.4.2 I compile this on a mac PC Intel Minimac with OS Tiger version 10.4.11 This is my python source script: """ test.py """ import Image import os import sys import wx app = wx.PySimpleApp(0) Image.new("RGBA", (400,400) ) wx.MessageBox("ciao", "") app.MainLoop() and this is my setup.py script: from distutils.core import setup import os #includes=["PIL", "PIL._imaging", "PIL._imagingft", "PIL._imagingmath", "PIL._imagingtk", "Image", "PIL.Image"] #packages = ["PIL"] import py2app plist = {} setup(name='test', options={ 'py2app': { 'includes':includes, #'packages': packages, 'compressed': True, 'optimize': 2, 'plist': plist } }, version='0.1', app=["test.py"], setup_requires=["py2app"], ) Compilation works fine! But.... when I run my test.app into another MAC ( this is a MAC PPC Tiger without PIL, wxpython, etc etc ), I have more problems: if I don't include any package, I obtain: ImportError: The _imaging C module is not installed And if I include packages = ["PIL"] I obtain this exception from console: ImportError: No module named Image Why???? I'm desperate!!! thx very much -- /\/\ariano Di Felice Java PHP Python programmer with MySQL, PostgreSql and Oracle support Linux Platform Developer http://www.marianodifelice.it +39 339 6407211 0735 703735
_______________________________________________ Pythonmac-SIG maillist - Pythonmac-SIG@python.org http://mail.python.org/mailman/listinfo/pythonmac-sig