install.py: made the user messages a bit clearer as to what is really required to be installed.

Wed, 30 Sep 2020 19:31:16 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Wed, 30 Sep 2020 19:31:16 +0200
changeset 7723
8a33a532fbe9
parent 7722
db3a6d341913
child 7724
a4950a978e8c

install.py: made the user messages a bit clearer as to what is really required to be installed.

scripts/install.py file | annotate | diff | comparison | revisions
--- a/scripts/install.py	Wed Sep 30 19:30:25 2020 +0200
+++ b/scripts/install.py	Wed Sep 30 19:31:16 2020 +0200
@@ -1401,7 +1401,7 @@
     except ImportError as msg:
         installed = pipInstall(
             "PyQt5",
-            "PyQt5 could not be detected.\nError: {0}".format(msg)
+            "'PyQt5' could not be detected.\nError: {0}".format(msg)
         )
         if installed:
             # try to import it again
@@ -1434,7 +1434,7 @@
             # PyQt 5.12 separated QtWebEngine into a separate wheel
             installed = pipInstall(
                 "PyQtWebEngine",
-                "PyQtWebEngine could not be detected.\nError: {0}"
+                "Optional 'PyQtWebEngine' could not be detected.\nError: {0}"
                 .format(msg)
             )
     
@@ -1443,7 +1443,7 @@
     except ImportError as msg:
         installed = pipInstall(
             "PyQtChart",
-            "PyQtChart could not be detected.\nError: {0}"
+            "Optional 'PyQtChart' could not be detected.\nError: {0}"
             .format(msg)
         )
     
@@ -1452,7 +1452,7 @@
     except ImportError as msg:
         installed = pipInstall(
             "QScintilla",
-            "QScintilla could not be detected.\nError: {0}".format(msg)
+            "'QScintilla' could not be detected.\nError: {0}".format(msg)
         )
         if installed:
             # try to import it again

eric ide

mercurial