python pip install pil_Python安装PIL的坑 – 楚 – 博客园 -Mikel

baacloud.png

今天在centos中使用pip安装PIL死活不成功,报错:

1

2

3

Could not find a version that satisfies the requirement PIL (from versions: )

Some externally hosted files were ignored as access to them may be unreliable (use --allow-external PIL to allow).

No matching distribution found for PIL

但是使用pip search PIL查找,源中确实有该包:

1

PIL                                  - Python Imaging Library

google之,得到如下办法(http://stackoverflow.com/questions/21242107/pip-install-pil-dont-install-into-virtualenv):

1

sudo pip install PIL --allow-external PIL --allow-unverified PIL

果然成功了。

但是程序运行时又报错:

1

font = ImageFont.truetype(os.path.join("fonts",font_type), font_size)
ImportError: The _imagingft C module is not installed

似乎是没有安装truetype扩展之类的。那就安装吧(http://stackoverflow.com/questions/4011705/python-the-imagingft-c-module-is-not-installed):

1

sudo yum install freetype-devel

然后卸载、重新安装PIL

1

2

sudo pip uninstall PIL

sudo pip install PIL --allow-external PIL --allow-unverified PIL

终于搞定了

PS:之前还尝试过从官网下载PIL源码自己编译安装:

(参照:http://www.cnblogs.com/free–coder/archive/2012/09/12/2681361.html)

1.下载源码并解压:

1

2

wget http://effbot.org/downloads/Imaging-1.1.7.tar.gz

tar -xzvf Imaging-1.1.7.tar.gz

2.编译安装(注意要root权限):

1

2

python setup.py build

python setup.py install

安装倒是成功了,但是python脚本运行时报错:

1

2

3

4

5

6

7

8

/usr/lib64/python2.7/site-packages/PIL/Image.py:81: RuntimeWarning: The _imaging extension was built for another  version of Pillow or PIL

warnings.warn(str(v), RuntimeWarning)

Traceback (most recent call last):

File "captcha.py", line 3, in

import Image, ImageDraw, ImageFont, ImageFilter

File "/usr/lib64/python2.7/site-packages/PIL/Image.py", line 65, in

raise ImportError("The _imaging extension was built for another "

ImportError: The _imaging extension was built for another  version of Pillow or PIL

似乎版本不对。。。。。

放弃了

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值