I\'ve just updated my Mac OS to 10.9 and I discovered that some (all?) of my Python modules are not here anymore, especially the Image one.
So I try to execute
Works for me ( OS X Yosemite 10.10.2 - Python 2.7.9 ) :
xcode-select --install sudo pip install pillow
Try this to check it:
from PIL import Image image = Image.open("file.jpg") image.show()