From f0887f4a8c7c7acd0c0978ce6434c2eaac72ce38 Mon Sep 17 00:00:00 2001 From: Henrik Grimler Date: Wed, 6 May 2020 16:32:39 +0200 Subject: [PATCH] setup-ubuntu: install python-is-python3 Some packages looks for python instead of python3 or python2 --- scripts/setup-ubuntu.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/setup-ubuntu.sh b/scripts/setup-ubuntu.sh index defe9d532..fa1b15833 100755 --- a/scripts/setup-ubuntu.sh +++ b/scripts/setup-ubuntu.sh @@ -6,6 +6,9 @@ PACKAGES="" # For en_US.UTF-8 locale. PACKAGES+=" locales" +# To provide /usr/bin/python as symlink to /usr/bin/python3 +PACKAGES+=" python-is-python3" + # Used by build-package.sh and CI/CD scripts. PACKAGES+=" curl" PACKAGES+=" gnupg"