Estoy usando python2.6 y tengo un problema esta mañana. Dijo que 'módulo' no tiene atributo 'Imagen'. Aquí está mi entrada. ¿Por qué la primera vez que no puedo usar PIL.Image?Python PIL no tiene ningún atributo 'Imagen'
>>> 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'>