From c152ea081b6fb523de22ae1ba914a6cf21bac9dd Mon Sep 17 00:00:00 2001 From: Vladimir Kozhukalov Date: Mon, 3 Apr 2023 03:04:51 +0300 Subject: [PATCH] Install dist packages before pip packages Sometimes we need dist packages before installing pip packages. For example we might want gcc to be able to install some pip packages from source. Change-Id: I820a35f61999acbbed40a83b33ea523a0c15fcc6 --- scripts/install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/install.sh b/scripts/install.sh index aae0d90..be3bd19 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -67,6 +67,7 @@ if [[ "${PLUGIN}" == "no" ]]; then $(dirname $0)/create_user.sh $(dirname $0)/setup_pip.sh $(dirname $0)/pip_install.sh bindep + $(dirname $0)/install_packages.sh for file in /opt/loci/pydep*; do PYDEP_PACKAGES+=($(bindep -f $file -b -l newline ${PROJECT} ${PROJECT_RELEASE} ${PROFILES} || :)) done