Install lxml on OSX | 4 Comments
Posted in Muffin Research Labs, Snippets on 5th March 2009, 11:10 pm by Stuart
Thanks to this post on lxml from Ian Bicking I’ve found the following command is all that’s required to install lxml on Mac OSX:
STATIC_DEPS=true easy_install 'lxml>=2.2beta4'
STATIC_DEPS=true sudo easy_install 'lxml>=2.2beta4'
The first run without “sudo” pulls down the necessary libxml and libxslt and then the second run provides the permissions to install the egg.
