Python 3.5 I can't install Pillow

15,788

Try this command on the command line:

python -m pip install pillow
Share:
15,788
Bartosz
Author by

Bartosz

Updated on August 21, 2022

Comments

  • Bartosz
    Bartosz over 1 year

    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?