2

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,013
  • 1
  • 2
  • 17

1 Answers1

3

the solution:

pip install Pillow

after that make sure it works:

from PIL import Image
Tal Folkman
  • 2,013
  • 1
  • 2
  • 17