From 69a42cafb3932d1a69a7d437ca633082a0ab2333 Mon Sep 17 00:00:00 2001 From: Pierre Kancir Date: Wed, 23 Aug 2023 00:15:40 +0200 Subject: [PATCH] Tools: update pip as part of install to prevent issues --- Tools/environment_install/install-prereqs-ubuntu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/environment_install/install-prereqs-ubuntu.sh b/Tools/environment_install/install-prereqs-ubuntu.sh index 394958f6e4..0fa7d98288 100755 --- a/Tools/environment_install/install-prereqs-ubuntu.sh +++ b/Tools/environment_install/install-prereqs-ubuntu.sh @@ -363,7 +363,7 @@ if [ ${RELEASE_CODENAME} == 'bionic' ]; then fi # try update setuptools and wheel before installing pip package that may need compilation -$PIP install $PIP_USER_ARGUMENT -U setuptools wheel +$PIP install $PIP_USER_ARGUMENT -U pip setuptools wheel if [ "$GITHUB_ACTIONS" == "true" ]; then PIP_USER_ARGUMENT+=" --progress-bar off"