Django/PIL Error - Caught an exception while rendering: The _imagingft C module is not installed

Posted by kenok on Stack Overflow See other posts from Stack Overflow or by kenok
Published on 2010-03-19T14:43:28Z Indexed on 2010/03/20 0:31 UTC
Read the original article Hit count: 915

Filed under:
|
|
|
|

I'm trying to run a webapp/site on my machine, it's running on OSX 10.6.2 and I'm having some problems:

Caught an exeption while rending: The _imagingft C module is not installed

Doing import _imagingft in python gives me this:

>>> import _imagingft
Traceback (most recent call last):
 File "<stdin>", line 1, in <module>
ImportError: dlopen(/Library/Python/2.6/site-packages/PIL/_imagingft.so,
2): Symbol not found: _FT_Done_Face
 Referenced from: /Library/Python/2.6/site-packages/PIL/_imagingft.so
 Expected in: flat namespace
 in /Library/Python/2.6/site-packages/PIL/_imagingft.so

It's seems that the Freetype library is the one having problems. No errors so far when installing PIL or when I compiled(?) the jpeg and freetype libraries so far.

I'm on django 1.1.1, python 2.6.2.

© Stack Overflow or respective owner

Related posts about django

Related posts about python