I am currently trying to do some image analysis work but cannot seem to get PIL installed. When I run my code (any code that has the from PIL import Image
line) it gives me the error of No module named "PIL"
.
I tried to install PIL using pip install PIL
and it gives me the error:
ERROR: Could not find a version that satisfies the requirement PIL
and
ERROR: No matching distribution found for PIL
.
The same error is displayed when I try to install the package using PyCharms project interpreter window. I have already tried running the line: pip install Pillow and it just says that I already have it installed. Can someone help me? Is there something I'm missing?