Bartosz
Bartosz

Reputation: 51

Python 3.5 I can't install Pillow

I have 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've also installed by pip successfully. But when I'm typing in 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.

Moreover when I uninstalled this package and I was trying to install by 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?

Upvotes: 4

Views: 15907

Answers (1)

snow
snow

Reputation: 475

Try this command on the command line:

python -m pip install pillow

Upvotes: 5

Related Questions