Install particular version with easy_install Install particular version with easy_install python python

Install particular version with easy_install


I believe the way to specify a version would be like this:

easy_install lxml==2.2.8

I (and most other Python users I suspect) stopped using easy_install and started using pip some time ago, so a solution in those terms is:

easy_install pippip install lxml==2.2.8

(pip has several benefits, including an uninstall command)


From the easy_install documentation:

easy_install PackageName==1.2.3


You should do something like this:

easy_install "lxml==2.2.8"