[XML-SIG] install question for PyXML-0.7

Martin v. Loewis martin@v.loewis.de
Mon, 31 Dec 2001 14:34:58 +0100


> python setup.py build --without-{xpath,xslt} 
> 
> but when I go to 
> /usr/local/lib/python2.2/site-packages/_xmlplus
> and type
> $ ls
> I still see a directory called "xpath" and one called "xslt".

I'm surprised you see a xpath directory, this is not supposed to
happen. As for xslt; this is a bug in setup.py. Replace the assignment

        without_xslt = 0

with the line

        with_xslt = 0

> can you tell me, how to exclude xpath and xslt from PyXML so
> I can use those which come with 4Suite ??????

Just delete the resulting xpath and xslt directories.

Regards,
Martin