I had the same issue running on a suse12.1.
To fix it I installed the missing package “python-xml” with this command:
zypper install python-xml
After that I got some InsecurePlatformWarnings, which I removed by installing security pips with this command:
pip install requests[security]
After both, it ran on my machine.
I hope this helps you, too.
- M