ImportError: The _imagingft C module is not installed

Python的图形库(PIL),

不过在官方下载了支持Python2.7的PIL Windows安装包后,运行过程中发现会报_imagingft C module is not installed错误。

解决方法:

1.在python27 的目录下执行 pip install pillow

2.到http://www.lfd.uci.edu/~gohlke/pythonlibs/#pil上面去下载针对Windows重新编译的PIL版本(参考网上别人提供的)

友情链接:

Pillow的docs:

http://pillow.readthedocs.io/en/latest/installation.html     

PIL官网:(我windows下面下载2.7的exe安装 出现上面的问题 )

http://www.pythonware.com/products/pil/

原文地址:https://www.cnblogs.com/lwsup/p/7258847.html