Python 3.5 I can not install the pillow

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?

+4
source share
1 answer

Try this command on the command line:

python -m pip install pillow
+5
source

Source: https://habr.com/ru/post/1608241/


All Articles