Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've tried this and run in to problems a bunch of times in the past. Does anyone have a recipe for installing lxml on OS X without MacPorts or Fink that definitely works?

Preferably with complete 1-2-3 steps for downloading and building each of the dependencies.

share|improve this question

12 Answers

up vote 26 down vote accepted

Thanks to @jessenoller on Twitter I have an answer that fits my needs - you can compile lxml with static dependencies, hence avoiding messing with the libxml2 that ships with OS X. Here's what worked for me:

cd /tmp
wget http://lxml.de/files/lxml-2.2.2.tgz
tar -xzvf lxml-2.2.2.tgz 
cd lxml-2.2.2
python setup.py build --static-deps --libxml2-version=2.7.3  --libxslt-version=1.1.24 
sudo python setup.py install
share|improve this answer
4  
The 'cd libs/' step fails for me, but it along with the following two wgets seem to be unnecessary as they happen as a side-effect of the 'setup.py build...' step anyway. – fuzzyman Aug 14 '09 at 17:31
Hmm... it's possible that libs/ directory was created for me the first time I ran "python setup.py build --static-deps" and it failed (because my firewall didn't allow FTP) - I actually pulled the .tar.gz files down via an intermediary server to work around that problem. – Simon Willison Aug 15 '09 at 7:19
AFAIK, wget doesn't come stock w/ OS X. Use curl -O instead. – David Eyk Aug 17 '09 at 18:54
This seems to be failing on Snow Leopard with the error: from SAX.c:15: /Developer/SDKs/MacOSX10.4u.sdk/usr/include/stdarg.h:4:25: error: stdarg.h: No such file or directory – alxp Jan 30 '10 at 22:48
Ahh found the Snow Leopard solution here: blog.coredumped.org/2009/09/snow-leopard-and-lxml.html - must temporarily change /usr/bin/gcc to point to /usr/bin/gcc-4.0 – alxp Jan 30 '10 at 23:05
show 4 more comments

This worked for me (10.6.8):

sudo env ARCHFLAGS="-arch i386 -arch x86_64" easy_install lxml
share|improve this answer
Didn't work for me unfortunately. Running 10.5.8 – I82Much Jul 23 '11 at 19:22
What was the error message in your case? – Andrei Jul 24 '11 at 9:57
I don't remember - but things to the effect of dylibs being of wrong architecture – I82Much Jul 26 '11 at 2:59
5  
Works for me in OS X Lion 10.7.1, thank you. – shuckster Sep 6 '11 at 14:15
1  
Works for me on OS X 10.6.8 – Tony Nov 3 '11 at 2:17
show 5 more comments

I've had excellent luck with Homebrew to install the libxml2 dependency:

brew install libxml2

Homebrew doesn't seem to have libxslt available, but I've not yet had a need for XSLT. YMMV.

Once you have the dependency(s), then the usual methods work just fine:

pip install lxml

or

easy_install lxml
share|improve this answer
Doesn't work for me. I end up with error: command 'gcc-4.2' failed with exit status 1. The solution above does work, however. – Weston Ruter Apr 26 '11 at 4:10
Didn't work for me on 10.6, but I managed to install with stackoverflow.com/questions/1277124/… – Andrei Jul 1 '11 at 8:41
Worked for me on 10.8. – Kenny Nov 22 '12 at 10:18
Worked for me, thanks. – chrisramon Mar 18 at 13:42

Easy_install can work using this:

STATIC_DEPS=true easy_install 'lxml>=2.2beta4'

you may then need to run, depending on permissions;

STATIC_DEPS=true sudo easy_install 'lxml>=2.2beta4'

see http://muffinresearch.co.uk/archives/2009/03/05/install-lxml-on-osx/

share|improve this answer
1  
This solution didn't work for me (OSX 10.6.8), but I've found another one: stackoverflow.com/questions/1277124/… – Andrei Jul 4 '11 at 11:07

This worked for me in the past install lxml on osx

share|improve this answer

I had this working fine with Snow Lepoard but after I upgraded to Lion I had to symlink gcc-4.2 to gcc. Running sudo env ARCHFLAGS="-arch i386 -arch x86_64" easy_install lxml was looking for gcc-4.2 instead of gcc.

share|improve this answer

Try installing Cython and installing from source, easy_install does fail. I haven't tried on my mac yet though.

Failing that the ports version isn't that ancient. You can see the dependencies, some of which had to be updated for my Linux build of lxml.

info py25-lxml py25-lxml @2.1.5 (python, devel)

lxml is a Pythonic binding for the libxml2 and libxslt libraries. It is unique in that it combines the speed and feature completeness of these libraries with the simplicity of a native Python API, mostly compatible but superior to the well-known ElementTree API. Homepage: http://codespeak.net/lxml/

Library Dependencies: python25, libxml2, libxslt, py25-hashlib, py25-setuptools, py25-zlib Platforms: darwin Maintainers: akitada@macports.org openmaintainer@macports.org

share|improve this answer
Check out the post from Ross, you need the header files for libxml2 and libxslt. Think that's why GCC was barfing when I tried to compile from the svn trunk. – Nick Martin Aug 14 '09 at 11:34

This is quite up to date - march 2009: http://lsimons.wordpress.com/2008/08/31/how-to-install-lxml-python-module-on-mac-os-105-leopard/

share|improve this answer
It looks like those instructions clobber OS X's built-in libxml2, which I'd rather not do. – Simon Willison Aug 14 '09 at 11:41
The Apple one is in /usr/lib the one on the blog is in /usr/local *The parameter to the configure steps) – Mark Sep 1 '09 at 23:19

lxml is included in the pypm repository:

$ pypm install lxml
share|improve this answer

To install with up to date versions of libxml2 and libxslt:

ARCHFLAGS="-arch i386 -arch x86_64" STATIC_DEPS=true pip install lxml

To install with specific versions of libraries:

ARCHFLAGS="-arch i386 -arch x86_64" STATIC_DEPS=true LIBXML2_VERSION=2.7.3 LIBXSLT_VERSION=1.1.24 pip install lxml

CentOS 64 bit (a bit off question, but hard won):

CFLAGS=-fPIC STATIC_DEPS=true pip install lxml

or

CFLAGS=-fPIC STATIC_DEPS=true LIBXML2_VERSION=2.7.3 LIBXSLT_VERSION=1.1.24 pip install lxml
share|improve this answer

Have you tried with easy_install?

I don't own a Mac so I can't test it, but easy_install is almost considered the standard way to install python modules, so if you don't know it you should have a look at it.

share|improve this answer
lxml has too many dependencies for a straight easy_install to work. – Simon Willison Aug 14 '09 at 11:01
Here are the errors you get if you attempt an easy_install: gist.github.com/167770 – Simon Willison Aug 14 '09 at 11:15

I compile it in /usr/local without any issues whatsoever.

Install Python, libxml2, libxslt and then lxml. You might need setuptools installed too.

share|improve this answer
That works on OS X? What prefix commands etc do you use? How do you ensure the libxml2 you are installing doesn't conflict with the one that ships with OS X? – Simon Willison Aug 14 '09 at 11:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.