easy_install is not so easy
Posted in Tech on
2009/08/13 – 01:19
Post a comment
Easy_install is not so easy,you may got problem some times. For example,when I install PIL,it will got an error:
Searching for PIL
Reading http://pypi.python.org/simple/PIL/
Reading http://www.pythonware.com/products/pil
Reading http://effbot.org/zone/pil-changes-115.htm
Reading http://effbot.org/downloads/#Imaging
No local packages or download links found for PIL
error: Could not find suitable distribution for Requirement.parse('PIL')
Reading http://pypi.python.org/simple/PIL/
Reading http://www.pythonware.com/products/pil
Reading http://effbot.org/zone/pil-changes-115.htm
Reading http://effbot.org/downloads/#Imaging
No local packages or download links found for PIL
error: Could not find suitable distribution for Requirement.parse('PIL')
You can got it work like this:
easy_install --find-links http://www.pythonware.com/products/pil/ Imaging
And also,by default,the reportlab 2.3 is not supported by easy_install,you can install it like this:
easy_install --find-links http://distfiles.minitage.org/public/externals/minitage/
如果你喜欢这篇文章,欢迎 订阅我的 RSS feed!




