When trying to import PIL (using Pillow), I get the following error:
from PIL import ImageTk, Image
File \"/usr/local/lib/python2.7/site-packages/PIL/I
That sounds like the wheel uploaded to PyPI was not built for your platform correctly. Unfortunately having the wheel for a PyPI package for your platform is not a guarantee that the wheel will install or work correctly, you're at the mercy of the PyPI package maintainer in this regard.
You should run pip uninstall Pillow
, download the source directly from PyPI, build it manually and run pip install -e
to install the wheel you built specifically for your machine.