私はpython2.6を使用していますが、今朝問題がありました。モジュールには 'Image'という属性はありません。ここに私の入力です。初めてPIL.Imageを使用できないのはなぜですか?Python PILには属性 'Image'がありません
>>> import PIL
>>> PIL.Image
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'Image'
>>> from PIL import Image
>>> Image
<module 'PIL.Image' from '/usr/lib/python2.6/dist-packages/PIL/Image.pyc'>
>>> PIL.Image
<module 'PIL.Image' from '/usr/lib/python2.6/dist-packages/PIL/Image.pyc'>