[XML-SIG] Strange install issue

Dinu Gherman gherman@darwin.in-berlin.de
Wed, 24 Jul 2002 12:43:15 +0200


I'm a bit puzzled! Moving over to a new machine I found some strange
errors with simple scripts handling simple XML. After a while, I've
made a totally new Python 2.2.1 installation (on OS X) with only the
std.lib. XML modules, but I get the traceback below. On my previous
machine that worked fine, but there I also had PyXML installed...

Really, all I did was to install Python with ./configure and make
install... I'd like to have that running before considering to in-
stall PyXML. Anybody a clue?

Thanks,

Dinu


[localhost:~] dinu% python
Python 2.2.1 (#1, Jul 24 2002, 12:15:42)
[GCC 2.95.2 19991024 (release)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
 >>> import xml
 >>> from xml.sax import make_parser
 >>> p = xml.sax.make_parser()
Traceback (most recent call last):
   File "<stdin>", line 1, in ?
   File "/usr/local/lib/python2.2/xml/sax/__init__.py", line 93, in 
make_parser
     raise SAXReaderNotAvailable("No parsers found", None)
xml.sax._exceptions.SAXReaderNotAvailable: No parsers found
 >>>