why can't I use pillow when I have pillow? [duplicate]

Solution 1:

The download module is called "pillow", but the import is PIL (Python Imaging Library). Pillow was forked from PIL as a clone, and was improved so much that it has replaced it.

from PIL import Image

or

import PIL