install.py

branch
5_1_x
changeset 1526
5193e77c2188
parent 1510
e75ecf2bd9dd
child 1540
3b0b478a3416
diff -r e38f749a6f28 -r 5193e77c2188 install.py
--- a/install.py	Sun Jan 01 17:16:40 2012 +0100
+++ b/install.py	Tue Jan 03 11:02:00 2012 +0100
@@ -713,6 +713,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