Monday, February 9, 2009

python-xml woes

Python ImportErrors like the following (stemming from the recent deprecation of the python-xml library in Ubuntu):
Failed to load application: No module named ext
... can be easily addressed by:
sudo apt-get install python-xml
export PYTHONPATH=$PYTHONPATH:/usr/lib/python2.5/site-packages/oldxml
This caused me a good few hours' grief earlier today.