rafaelcosman
rafaelcosman

Reputation: 2599

Can't install PIL

I'm unable to install PIL. When I run pip install PIL I get:

Downloading/unpacking PIL
  Could not find any downloads that satisfy the requirement PIL
Cleaning up...
No distributions at all found for PIL
Storing debug log for failure in /tmp/tmpWJojCu

I've tried following the answers to this question but I get the same error.

Stack: Python 2.7, PIP, EC2 Ubuntu machine.

Upvotes: 12

Views: 16454

Answers (1)

wim
wim

Reputation: 362478

This one bites a lot of people, PIL has become pillow.

pip install pillow

But the import name was unchanged, so it is different from the package name now. That is, you continue to use:

from PIL import Image

Upvotes: 27

Related Questions