1

I keep getting errors when I try to run pillow on x64 Windows

I have followed these instructions for installing pillow

I seem to able to

import PIL

but it fails when I try

from PIL import image

See screen shot enter image description here

Can someone please help?

I've tried installing the 32 bit version, but that fails and trying to uninstall pillow also fails

enter image description here

Community
  • 1
  • 1
Psionman
  • 3,084
  • 1
  • 32
  • 65
  • That wheel ending in `_amd64.whl` is for 64bit version of python, but you have 32 bit one. – J.J. Hakala Jul 21 '16 at 13:54
  • Oh dear I'm confused. My windows laptop is "x64-based PC". Does this mean I need to reload python, or change to 32 bit version of pillow? – Psionman Jul 21 '16 at 14:38

1 Answers1

0

Solved

All I needed to do was

pip install pillow

That simple

Psionman
  • 3,084
  • 1
  • 32
  • 65