From 3b96b19b8e6971b804038ffdf4a4a619921a2183 Mon Sep 17 00:00:00 2001 From: Henrik Grimler Date: Wed, 6 May 2020 09:16:43 +0200 Subject: [PATCH] setup-ubuntu: python-yaml is needed by libduktape (uses py2) --- scripts/setup-ubuntu.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/setup-ubuntu.sh b/scripts/setup-ubuntu.sh index 40cd26900..defe9d532 100755 --- a/scripts/setup-ubuntu.sh +++ b/scripts/setup-ubuntu.sh @@ -111,6 +111,9 @@ PACKAGES+=" lld" # Needed by gitea. PACKAGES+=" npm" +# Needed by libduktape (2.5.0 still uses python2 unfortunately) +PACKAGES+=" python-yaml" + # Java. PACKAGES+=" openjdk-8-jdk"