vote up 8 vote down star
11

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.

flag

8 Answers

vote up 0 vote down

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

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

link|flag
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 at 11:01
vote up 0 vote down

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.

link|flag
lxml has too many dependencies for a straight easy_install to work. – Simon Willison Aug 14 at 11:01
Here are the errors you get if you attempt an easy_install: gist.github.com/167770 – Simon Willison Aug 14 at 11:15
vote up 1 vote down

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

link|flag
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 at 11:34
vote up 0 vote down

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/

link|flag
It looks like those instructions clobber OS X's built-in libxml2, which I'd rather not do. – Simon Willison Aug 14 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 at 23:19
vote up 13 vote down check

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://codespeak.net/lxml/lxml-2.2.2.tgz
tar -xzvf lxml-2.2.2.tgz 
cd lxml-2.2.2
cd libs/
wget ftp://xmlsoft.org/libxml2/libxml2-2.7.3.tar.gz
wget ftp://xmlsoft.org/libxml2/libxslt-1.1.24.tar.gz
cd ..
python setup.py build --static-deps --libxml2-version=2.7.3  --libxslt-version=1.1.24 
sudo python setup.py install
link|flag
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 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 at 7:19
AFAIK, wget doesn't come stock w/ OS X. Use curl -O instead. – David Eyk Aug 17 at 18:54
vote up 1 vote down

This worked for me in the past install lxml on osx

link|flag
vote up 0 vote down

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/

link|flag
vote up 0 vote down

lxml is included in the pypm repository:

$ pypm install lxml
link|flag

Your Answer

Get an OpenID
or

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