Instalé
PIL usando virtualenv, y así termina la instalción:
--------------------------------------------------------------------
PIL 1.1.7 SETUP SUMMARY
--------------------------------------------------------------------
version 1.1.7
platform linux2 2.7.1+ (r271:86832, Apr 11 2011, 18:13:53)
[GCC 4.5.2]
--------------------------------------------------------------------
*** TKINTER support not available (Tcl/Tk 8.5 libraries needed)
***
JPEG support not available
***
ZLIB (PNG/ZIP) support not available
***
FREETYPE2 support not available
--- LITTLECMS support available
--------------------------------------------------------------------
PIL se instaló correctamente, pero sin soporte para JPEG y PNG. Este es el funcionamiento "esperado" al instalar PIL con virtualenv.
La solución: usar
pillow (fork PIL, amigable con virtualenv)
Luego de ejecutar "./virtualenv27/bin/pip install pillow":
--------------------------------------------------------------------
Pillow 1.7.4 ( PIL fork based on PIL 1.1.7 ) SETUP SUMMARY
--------------------------------------------------------------------
platform linux2 2.7.1+ (r271:86832, Apr 11 2011, 18:13:53)
[GCC 4.5.2]
--------------------------------------------------------------------
*** TKINTER support not available (Tcl/Tk 8.5 libraries needed)
---
JPEG support available
---
ZLIB (PNG/ZIP) support available
---
FREETYPE2 support available
--- LITTLECMS support available
--------------------------------------------------------------------