I get this error while installing Pillow, the python imaging library.
> pip intall pillow
...
--enable-jpeg requested but jpeg not found
I get this error while installing Pillow, the python imaging library.
> pip intall pillow
...
--enable-jpeg requested but jpeg not found
The answer is at
Python Image Library fails with message "decoder JPEG not available" - PIL
I needed to install the jpeg developer library.
> sudo apt-get install libjpeg-dev
That solved the problem.