install.py

changeset 1525
1c7bd9144f43
parent 1509
c0b5e693b0eb
child 1538
c14a5ecdb6f4
--- a/install.py	Sun Jan 01 17:32:58 2012 +0100
+++ b/install.py	Tue Jan 03 11:00:35 2012 +0100
@@ -717,6 +717,13 @@
     print("Python Version: {0:d}.{1:d}.{2:d}".format(*sys.version_info[:3]))
     
     try:
+        import xml.etree            # __IGNORE_WARNING__
+    except ImportError as msg:
+        print('Your Python3 installation is missing the XML module.')
+        print('Please install it and try again.')
+        exit(5)
+    
+    try:
         from PyQt4.QtCore import qVersion
     except ImportError as msg:
         print('Sorry, please install PyQt4.')

eric ide

mercurial