From be74f7b480a36611bc91e10ba14e44c38a78f29a Mon Sep 17 00:00:00 2001 From: Pierre Kancir Date: Mon, 7 Aug 2023 11:32:39 +0200 Subject: [PATCH] Tools: switch bionic to python3 to fix install --- Tools/environment_install/install-prereqs-ubuntu.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tools/environment_install/install-prereqs-ubuntu.sh b/Tools/environment_install/install-prereqs-ubuntu.sh index e5040e771f..b8d821253f 100755 --- a/Tools/environment_install/install-prereqs-ubuntu.sh +++ b/Tools/environment_install/install-prereqs-ubuntu.sh @@ -82,8 +82,8 @@ PIP=pip3 if [ ${RELEASE_CODENAME} == 'bionic' ] ; then SITLFML_VERSION="2.4" SITLCFML_VERSION="2.4" - PYTHON_V="python" - PIP=pip2 + PYTHON_V="python3" + PIP=pip3 elif [ ${RELEASE_CODENAME} == 'buster' ]; then SITLFML_VERSION="2.5" SITLCFML_VERSION="2.5"