Ich benutze diesen Befehl in der Shell, um PIL zu installieren:
easy_install PIL
dann laufe ich python
und tippe das : import PIL
. Aber ich bekomme diesen Fehler:
Traceback (most recent call last):
File "<console>", line 1, in <module>
ImportError: No module named PIL
Ich hatte noch nie ein solches Problem. Was denkst du?
from PIL import Image
, was nicht funktioniert.
easy_install Pillow
stattdessen empfehlen . Pillow ist eine Gabel von PIL, die eine bessere Verpackung hat und Python 3 unterstützt.