pillow installed, but “no module named pillow” - p

2019-01-09 09:31发布

问题:

Using python 2.7 on Windows 7 installed package pillow with

python -m pip install pillow

Got success message (Successfully installed pillow). Closed and re-opened cmd terminal.

But when I try to

import pillow

I get the error message

ImportError: No module named pillow

If python -m pip install pillow is run again, it says

Requirement already satisfied (use --upgrade to upgrade): pillow in c:\python27\lib\site-packages

回答1:

Try using

import PIL

or

from PIL import ...

instead. Pillow is a fork of PIL, the Python Imaging Library, which is no longer maintained. However, to maintain backwards compatibility, the old module name is used.