From 104d94ff02c4ee338d47bc9a51fb41ffb947a351 Mon Sep 17 00:00:00 2001 From: ng0 Date: Tue, 26 Feb 2019 11:00:39 +0000 Subject: gnunet-qr.py: More verbose information about required packages --- src/util/gnunet-qr.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/util/gnunet-qr.py b/src/util/gnunet-qr.py index c0518854d..88fb4fc50 100755 --- a/src/util/gnunet-qr.py +++ b/src/util/gnunet-qr.py @@ -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) -- cgit v1.2.3