From 1644595201a07519b5f3f94b99273bd1e51a3f31 Mon Sep 17 00:00:00 2001 From: Vasyl Saienko Date: Wed, 12 Jun 2019 17:08:54 +0300 Subject: [PATCH] Install python3-distutils when using python3 distutils is not included into main python package on ubuntu. Add python3-distutils explicitly when using PYTHON3=yes. Change-Id: I8aedaaa63d0b5aef6ef9691ee66ea9000ac14cbc --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index 27ec078..0fc2046 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -10,7 +10,7 @@ if [[ "${PYTHON3}" == "no" ]]; then rpm_python_packages=("python" "python-virtualenv") python3="" else - dpkg_python_packages=("python3" "python3-virtualenv") + dpkg_python_packages=("python3" "python3-virtualenv" "python3-distutils") rpm_python_packages=("python3" "python3-virtualenv") python3="python3" fi