In article <[email protected]>, moerchendiser2k3 <[email protected]> wrote: > I have a problem with Python and the Python Image Library to get it > work on OSX 64 bit. Maybe anyone can help me? I started Python in 64 > bit mode and called Image.open(...).load() and got: > > ImportError: The _imaging C module is not installed [...]
It's hard to know what your problem is without more information. One potential stumbling block: PIL has dependencies on other open-source libraries, such as libjpeg and freetype. You'll need to have 64-bit versions of them available when building and when running, as well. There are a number of ways to do that. The simplest might be to download pre-built frameworks containing those libraries from here: http://www.kyngchaos.com/software:frameworks There are also build scripts there for building your own versions from scratch. -- Ned Deily, [email protected] -- http://mail.python.org/mailman/listinfo/python-list
