I uninstalled the PIL and installed the Pillow and the problem solved.PIL worked fine for me with the earlier versions of Django but not with Django 1.6
apache上跑Django项目中使用了PIL会报utf8的不能解析的错误
但是跟踪错误后发现
其中引入_imaging的时候报错了。然后去外网上搜原来Django 1.6不能使用PIL,需要卸载PIL,然后安装Pillow就不会报错了。
快速方法:pip uninstall PIL
pip install Pillow
瞬间碉堡了,原来是django版本问题啊,我勒个去,我以为PIL只要安装对应的python版本就可以了,没想到还要匹配Django版本,靠!
折腾了我一天 - -!!!!!!!!!!!!!!!!!!!!!!!!!!!
The '_imaging' module for the PIL could not be imported: DLL load failed: The specified module could not be found
时间: 2024-10-06 18:07:28