2017-04-15 59 views
1
發現

我只是pip3安裝枕頭(PIL層叉)在Windows上,我可以進口,但Image類不能被找到:PIL.Image類不能與枕頭

>>> import PIL 
>>> PIL.Image 
Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
AttributeError: module 'PIL' has no attribute 'Image' 

我做了什麼錯?

回答

3

找到答案在Pillow's documentation

警告

枕頭> = 1.0不再支持「進口圖像」。請使用 「從PIL導入圖像」代替。

from PIL import Image工作。

+0

這是很多人遇到的常見錯誤 –