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
This commit is contained in:
Pierre Riteau 2023-12-01 22:52:50 +01:00
parent b3d9b3773c
commit 611bec8867

View File

@ -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