[Answered ]-Installing Pillow FreeType Support in Django VirtualEnv

0👍

Sounds like you are missing the FreeType libraries at the system level. For example on Ubuntu / Debian:

apt-get install libfreetype6-dev

However IIRC, you do not have access to apt-get on PythonAnywhere. I suggest that you contact their support and see if that library can be included for your account. If they can do that, just reinstall Pillow to get support for FreeType.

2👍

Pillow on PythonAnywhere already has freetype enabled. You don’t need to do anything except pip install it.

👤Glenn

Leave a comment