Easy PIL install
https://stackoverflow.com/questions/8863917/importerror-no-module-named-pil
At first install Pillow with
pip install Pillow
or as follows
c:\Python35>python -m pip install Pillow
Then in python code you may call
from PIL import Image
Comments