Außerdem wird wahrscheinlich ein Fehler angezeigt. Fügen Sie daher meine eigenen Notizen hinzu.
Es läuft auf Pyenv, das von Homebrew installiert wurde.
python2.7.12 Pillow2.7.0
Moos mit Import
>>> from PIL import Image
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/var/pyenv/versions/2.7.12/lib/python2.7/site-packages/PIL/Image.py", line 63, in <module>
from PIL import _imaging as core
ImportError: dlopen(/usr/local/var/pyenv/versions/2.7.12/lib/python2.7/site-packages/PIL/_imaging.so, 2): Symbol not found: _PyUnicodeUCS2_AsLatin1String
Referenced from: /usr/local/var/pyenv/versions/2.7.12/lib/python2.7/site-packages/PIL/_imaging.so
Expected in: flat namespace
in /usr/local/var/pyenv/versions/2.7.12/lib/python2.7/site-packages/PIL/_imaging.so
Dies hat es behoben
$ pip freeze | pip install --ignore-installed --no-use-wheel -r /dev/stdin
Es wird hier ausführlich geschrieben Import Error on El Capitain · Issue #1753 · python-pillow/Pillow
Recommended Posts