Reputation: 29
I am using PyCharm with Python 3.0 and I want to import Image Module.
While installing the Image module from Project Interpreter, I got a message which says:
ValueError: zlib is required unless explicitly disabled using --disable-zlib, aborting.
There is no package named Zlib to install.
I tried to find several solution, but most of them are for Linux. for example, this solution: no module named zlib
How can I solve this issue in Windows and with PyCharm ?
Upvotes: 2
Views: 2793
Reputation: 1
I had the same error when I wanted to install Mezzanine.
Solution was to install pillow by - downloading the Windows package from https://pypi.python.org/pypi/Pillow/3.4.2, and - installing with "pip install . Please make sure that you download the correct pillow package for your Python version. After that, I could install Mezzanine without error.
Upvotes: 0