raynd
raynd

Reputation: 1

Zlib error when installing Pillow

I've been trying to download the Pillow module for Python 3.4 using PyCharm, but every time I do this I get this error:

ValueError: zlib is required unless explicitly disabled using --disable-zlib, aborting

I've also tried downloading it from the command line, but I get the same error.

Upvotes: 0

Views: 3354

Answers (1)

Rey
Rey

Reputation: 186

I had the same issue. Windows 10, Python 3.

Go get a prebuilt binary :

Install using the command found on: pip.pypa.io/en/latest/user_guide/#installing-from-wheels

pip install SomePackage-1.0-py2.py3-none-any.whl

I also install the zlib binary from official site. This may or may not have contributed: http://www.zlib.net/

Upvotes: 2

Related Questions