我的环境是python2.7.8.django1.6.4.apache2.2. 问题:在django自带的runserver环境下没有任何报错,但是配置在apache上出现了 “The _imagingft C module is not installed”的报错.找了很久原来是因为 import Image的时候 PIL包在window底下的貌似是二进制的类似问题,需要下载Pillow的对应whl文件进行修补,下载链接: http://www.lfd.uci.edu/~gohlke/pyth…
操作系统:win7 64位 安装python版本 win32 2.7版本 安装的PIL插件PIL-1.1.7.win32-py2.7.exe 用本地自带的开发服务器上传图片处理等一切正常 放到APACHE下上传图片出现 The _imaging C module is not installed 下载Pillow-2.2.1.win32-py2.7.exe 安装后正常使用 下载地址http://www.lfd.uci.edu/~gohlke/pythonlibs/ 里面有很多python的扩展…
今天在WIN 7 64位用PIL的时候,提示 The _imaging C module is not installed ,原来是需要安装64位的. 刚开始安装的是这个:http://www.pythonware.com/products/pil/ 但如果是64位,需要安装这: Pillow-2.1.0.win-amd64-py2.7.exehttp://www.lfd.uci.edu/~gohlke/pythonlibs/#pil 在python后输入import ImageFont如果不…
我们常常在执行 httpd –k restart 重启Apache时报错提示: (OS 10048)通常每个套接字地址(协议/网络地址/端口)只允许使用一次. : AH00072: make_sock: could not bind to address 0.0.0.0:80AH00451: no listening sockets available, shutting downAH00015: Unable to open logs 如图: 解决方法: 直接干掉一个httpd.exe然后再…
在绘图的时候import matplotlib.pyplot as plt报错:ImportError: No module named '_tkinter', please install the python-tk package 报错原因:没有安装Tkinter 解决方法:sudo apt-get install python-tk 切记,不要用pip解决,pip不能解决问题…