Questions tagged «easy-install»

EasyInstall是一个软件包管理器,提供了一种标准格式来分发Python程序和库。setuptools模块的一部分。

3
使用easy_install安装特定版本
我正在尝试安装lxml。我看了一下网站,发现2.2.8版对我来说很合理,但是当我这样做时easy_install lxml,它安装了2.3.beta1版,这并不是我真正想要的。 解决此问题的最佳方法是什么?如何强制easy_install安装特定版本? (Mac OS X 10.6)


4
使用virtualenv或buildout安装PIL的问题
当我使用easy_install或buildout安装PIL时,其安装方式必须是“导入映像”,而不是“从PIL导入映像”。 但是,如果我执行“ apt-get install python-imaging”或使用“ pip -E test_pil install PIL”,则一切正常。 以下是我如何尝试使用virtualenv安装PIL的示例: # virtualenv --no-site-packages test_pil # test_pil/bin/easy_install PIL # test_pil/bin/python Python 2.5.1 (r251:54863, Feb 6 2009, 19:02:12) [GCC 4.0.1 (Apple Inc. build 5465)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import PIL Traceback (most recent …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.