gnunet-qr.py: More verbose information about required packages
authorng0 <ng0@n0.is>
Tue, 26 Feb 2019 11:00:39 +0000 (11:00 +0000)
committerng0 <ng0@n0.is>
Tue, 26 Feb 2019 11:00:39 +0000 (11:00 +0000)
src/util/gnunet-qr.py

index c0518854dc8a6c81d7baad792a9fe6439d662aab..88fb4fc506abb1f78e5aa61c952db51b1bd80ad7 100755 (executable)
@@ -4,6 +4,8 @@ try:
     from builtins import str
 except ImportError as e:
     print('Cannot import future modules, python2.7 future module required!')
+    print('For Debian, you can obtain is as "python-future".')
+    print('Upstream: https://python-future.org/')
     sys.exit(1) 
 import getopt
 import subprocess
@@ -11,7 +13,9 @@ from sys import argv
 try:
     import zbar
 except ImportError as e:
-    print('Cannot run gnunet-qr, please install zbar-python')
+    print('Cannot run gnunet-qr, please install the zbar module.')
+    print('For Debian, you can obtain it as "python-zbar".')
+    print('Upstream: http://zbar.sourceforge.net/')
     sys.exit(1)