python2.6.6安装Image模块

python2.6.6安装Image模块
1、下载Image模块源码
地址:http://www.pythonware.com/products/pil/index.htm
2、加压文件
#tar zxvf Imaging-1.1.7.tar.gz
3、安装模块
#cd Imaging-1.1.7
#python setup.py install

总结:
最开始从https://pypi.python.org/pypi/image/1.4.1 地址下载了image模块(搜索image关键字),总是安装不上,后来下载了Python Imaging Library (PIL)模块(搜索Python Imaging Library)才安装成功,猜测应该是模块不对导致。

原文地址:https://www.cnblogs.com/Before/p/5507670.html