3

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
Tal Folkman
  • 2,368
  • 1
  • 7
  • 21

1 Answers1

5

the solution:

pip install Pillow

after that make sure it works:

from PIL import Image
Tal Folkman
  • 2,368
  • 1
  • 7
  • 21