I installed Python 3.5.0rc3 amd64 and I need to install Pillow. So I downloaded it from http://www.lfd.uci.edu/~gohlke/pythonlibs/ Pillow-2.9.0-cp35-none-win_amd64.whl, and I also installed it successfully. But when I type the interpreter from PIL import Image, I got the following message:
File "C:\Program Files\Python 3.5\lib\site-packages\PIL\Image.py", line 63, in <module>
from PIL import _imaging as core
ImportError: DLL load failed: The specified module could not be found.
Also, when I uninstalled this package and I tried to install easy_install, I got another error:
Couldn't find a setup script in C:\Program Files\Python 3.5\Scripts\Pillow‑2.9.0‑cp35‑none‑win_amd64.whl.
What can I do?
source
share