importerror: the _imagingft c module is not installed
时间: 2023-04-26 12:05:35 浏览: 241
PIL-1.1.7.win32-py2.7(解决ImportError The _imagingft C module is not installed)
这是一个 Python 库安装错误,表明 _imagingft c 模块没有被安装。这个模块是 PIL (Python Imaging Library) 库的一部分,它是用来处理图像的。你需要安装 PIL 库或者它的替代库 Pillow 来解决这个问题。
可以通过 pip 安装:
```
pip install pillow
```
或者
```
pip install pil
```
阅读全文