Pythonmac-SIG] PIL and py2app on Leopard
> From:
> Martin Dunschen <[EMAIL PROTECTED]>
> Date:
> Tue, 08 Apr 2008 15:26:22 +0100
> To:
> pythonmac-sig@python.org
>
> To:
> pythonmac-sig@python.org
>
>
> PIL stands for "Python Imaging Library&q
PIL stands for "Python Imaging Library". "Image" is the module you
import to use this library.
In your setup.py you need to make sure that the "Image" module is
included in building the app. Read the documentation to py2app (or
py2exe) to find how you can ensure that this module will be include
I had the following problem with a python script that imports the Image
module:
...
import Image
...
When I build an app with py2app I got an error that Image can't be found.
I tracked the problem down to the file
MyApp.app/Contents/Resources/__boot__.py
which imports it.
In there changed the l