Skip to content

Pillow

This is the home of Pillow, the friendly PIL fork. PIL is the Python Imaging Library. If you have ever worried or wondered about the future of PIL, please stop. We're here to save the day.

Require

Many of Pillow’s features require external libraries:

  • libjpeg
  • zlib
  • libtiff
  • libfreetype
  • littlecms
  • libwebp
  • tcl/tk
  • openjpeg

Troubleshooting

jpeg not found

아래와 같이 jpeg를 찾을 수 없다는 에러가 발생되면서 설치되지 않을 수 있다.

ValueError: --enable-jpeg requested but jpeg not found, aborting.

이 경우 플래그로 --disable-jpeg를 추가하여 jpeg지원을 없애는 방법이 있다.

$ python setup.py build_ext --disable-jpeg install

See also

Favorite site