使用easy_install安装特定版本


81

我正在尝试安装lxml。我看了一下网站,发现2.2.8版对我来说很合理,但是当我这样做时easy_install lxml,它安装了2.3.beta1版,这并不是我真正想要的。

解决此问题的最佳方法是什么?如何强制easy_install安装特定版本?

(Mac OS X 10.6)


LXML取决于为XML一些C库,看到这里接受的答案stackoverflow.com/questions/6504810/...
埃米特巴特勒

Answers:


138

我相信指定版本的方式如下:

easy_install lxml==2.2.8

我(以及我怀疑的大多数其他Python用户)在一段时间前已停止使用easy_install并开始使用pip,因此这些方面的解决方案是:

easy_install pip
pip install lxml==2.2.8

pip有几个好处,包括一个uninstall命令)



7

您应该执行以下操作:

easy_install "lxml==2.2.8"
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.