entering the lines in the first program gives the error message
....line 14 in module
from PIL import Image # pillow
ImportError: No module named PIL
entering the lines in the first program gives the error message
....line 14 in module
from PIL import Image # pillow
ImportError: No module named PIL
I get this same error - did you find a workaround?
Hi Richard,
Have you done:
sudo pip-3.2 install pillow
Let me know how it goes...
Peter
Thanks Peter, that did the trick!
Thanks Peter, that did the trick!
When I try and install Pillow,
sudo pip-3.2 install pillow
it aborts with:
File "setup.py", line 515, in build_extensions
% (f, f))
ValueError: --enable-jpeg requested but jpeg not found, aborting.
this is on an up-to-date Raspberry Pi system.
any clues?
--bob
Bob,
I get exactly the same error message as you. Are you any closer? I'm still looking for the answer!
Claire
Hi!
I got the exactly the same problem, you're probably missing the libjpeg library. I did
aptitude install libjpeg-dev
pip-3.2 install pillow
and that worked.
In case, you're not familiar with it, you can run in RPi (standard NOOBS install): sudo apt-get install libjpeg-dev
Tudi--
Many thanks! That did it!
--bob k6rtm