The single line that I am trying to run is the following:
from PIL import Image
However simple this may seem, it gives an error:
I had the same issue, and did this to fix it:
In command prompt
pip install Pillow ##
Ensure that you use
I in Image has to be capital. That was the issue in my case.
I
Image