在安装python映像库Pillow时,我得到了这个错误。
> pip intall pillow
...
--enable-jpeg requested but jpeg not found发布于 2015-11-19 15:47:24
答案是
Python Image Library fails with message "decoder JPEG not available" - PIL
我需要安装jpeg开发人员库。
> sudo apt-get install libjpeg-dev这就解决了问题。
https://stackoverflow.com/questions/33797913
复制相似问题