From bbd122ccbc877b3ab76629673c5c39a5b0b63b4d Mon Sep 17 00:00:00 2001 From: Mladen Date: Mon, 9 Oct 2023 08:53:03 +0200 Subject: [PATCH] fix: Add missing Ubuntu package (#52) --- common/install-python.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/install-python.sh b/common/install-python.sh index 5c9d8ec..11761a5 100755 --- a/common/install-python.sh +++ b/common/install-python.sh @@ -19,7 +19,7 @@ echo "### Installing python version 3 ###" echo "#######################################################" PYTHON_VERSION=$(cat AppManifest.json | jq .[].dependencies.python.version | tr -d '"') -sudo apt-get update && apt-get install -y python3-distutils python$PYTHON_VERSION +sudo apt-get update && apt-get install -y python3-distutils python$PYTHON_VERSION python3-dev curl -fsSL https://bootstrap.pypa.io/get-pip.py | sudo python$PYTHON_VERSION sudo update-alternatives --install /usr/bin/python python /usr/bin/python$PYTHON_VERSION 10