I have PIL (Python imaging library) installed.
When I run Python:
import PIL
import Image
import _imaging
I don\'t get errors. Howe
I was completely missing the _imaging.*
files in the lib/site-packages/PIL
folder.
I downloaded the egg from here (the correct file depends on the platform):
https://pypi.python.org/pypi/Pillow/2.7.0
renamed it from .egg to .zipand copied all the files in the folder
PILthat start with
_imagingto the folder
lib/site-packages/PIL`.
.. Problem solved