PIL error: The _imaging C module is not installed

前端 未结 6 1887
情深已故
情深已故 2021-01-04 02:52

I have PIL (Python imaging library) installed.

When I run Python:

import PIL
import Image
import _imaging

I don\'t get errors. Howe

6条回答
  •  余生分开走
    2021-01-04 03:20

    On Windows, remove _imaging.pyd and _imagingft.pyd inside C:\Python27. Leave all _imaging modules inside the C:\Python27\Lib\site-packages\PIL folder.

    It works for me.

提交回复
热议问题