Installing Python egg dependencies without apt-get

Posted by l0b0 on Stack Overflow See other posts from Stack Overflow or by l0b0
Published on 2010-05-11T08:05:26Z Indexed on 2010/05/11 8:24 UTC
Read the original article Hit count: 269

I've got a Python module which is distributed on PyPI, and therefore installable using easy_install. It depends on lxml, which in turn depends on libxslt1-dev. I'm unable to install libxslt1-dev with easy_install, so it doesn't work to put it in install_requires. Is there any way I can get setuptools to install it instead of resorting to apt-get?

© Stack Overflow or respective owner

Related posts about python

Related posts about setuptools