From 611bec8867b72974b6136f8427a080f2222b99fc Mon Sep 17 00:00:00 2001 From: Pierre Riteau Date: Fri, 1 Dec 2023 22:52:50 +0100 Subject: [PATCH] Add python3-devel to Kayobe dependencies When python3 is missing from the host operating system, the install.sh and install-dev.sh scripts fail with the following error: Creating virtual environment in /home/centos/kayobe-venv /home/centos/kayobe/dev/functions: line 169: python3: command not found Change-Id: I50d47ceeeae803545d78a40bbeec1aaa2f5112b1 --- dev/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/functions b/dev/functions index 33d7a4aba..8e10e53ee 100644 --- a/dev/functions +++ b/dev/functions @@ -144,7 +144,7 @@ function is_yum { function install_dependencies { echo "Installing package dependencies for kayobe" if is_dnf; then - sudo dnf -y install gcc git vim python3-pyyaml libffi-devel + sudo dnf -y install gcc git vim python3-devel python3-pyyaml libffi-devel elif is_yum; then echo "CentOS 7 is no longer supported" exit 1