centos下安装pillow报ImportError: The _imagingft C module is not installed的解决方案

前端之家收集整理的这篇文章主要介绍了centos下安装pillow报ImportError: The _imagingft C module is not installed的解决方案前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

centos系统,使用pip安装pillow,运行时出现ImportError错误“The _imagingft C module is not installed”
具体出错的那行代码是font = ImageFont.truetype('Arial.ttf',36)

解决过程如下:


先确保代码中导入语句是:

fromPILimportImageFont


尝试先卸载pillow:

pipuninstallpillow


安装系统devel包:

sudoyuminstalllibtiff-devellibjpeg-devellibzip-develfreetype-devellcms2-devellibwebp-develtcl-develtk-devel


再重新安装pillow:

pipinstallpillow


安装完毕。但运行时仍然报错,试了几次仍然不行。


最后在安装pillow时,加上 --no-cache-dir参数:

pipinstallpillow--no-cache-dir


再试,成功。

原文链接:https://www.f2er.com/centos/381867.html

猜你在找的CentOS相关文章