Currently I'm working on one of my first python projects so sorry in advance if some problems seems to be a bit too simple... Anyway.
My simple project uses imdbpy - Python package to access the IMDb's database (http://pypi.python.org/pypi/IMDbPY/). imdbpy depends inter alia on lxml.
Problem occurs when I try to install my project using python setup.py script.
Error message generated during installation:
** make sure the development packages of libxml2 and libxslt are installed **
Using build configuration of libxslt
So I need libxml2 and libxslt but there are not accesible via pypi.
I've found similar problem on Stackoverflow: python setuptool how can I add dependency for libxml2-dev and libxslt1-dev? but answer does not solve my problem.
Is there any workaround for such dependency problem?
I can add as a side note that if libxml2-dev and libxslt1 are installed with:
sudo apt-get install libxml2-dev sudo apt-get install libxslt1-dev
then my setup script proceeds successfully.
Thanks in advance for any ideas.