fail to install module PIL - error - Could not find a version that satisfies the requirement PI

Viewed 785

when trying to import - from PIL import Image this error occurs:

ERROR: Could not find a version that satisfies the requirement PIL (from versions: none)
ERROR: No matching distribution found for PIL
1 Answers

the solution:

pip install Pillow

after that make sure it works:

from PIL import Image
Related