我安装了Pillow,然后执行以下操作:

from PIL import Image

我收到以下错误:
Traceback (most recent call last):
  File "<console>", line 1, in <module>
  File "/usr/local/lib/python2.7/dist-packages/PIL/Image.py", line 61, in <module>
ImportError: cannot import name _imaging

但是,如果我分别导入它们,一切都很好,即:
import _imaging
import Image

您知道可能是什么问题吗?

最佳答案

我也遇到了这个问题。如果安装了PIL,则可能会发生这种情况,然后在其顶部安装Pillow。

转到/usr/local/lib/python2.7/dist-packages/并删除名称中带有“PIL”的任何内容(包括目录)。如果有Pillow .egg文件,您也可以删除它。
然后重新安装枕头。

将“python2.7”替换为您使用的python版本。

关于python - ImportError : cannot import name _imaging,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25340698/

10-11 18:05