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
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
the solution:
pip install Pillow
after that make sure it works:
from PIL import Image