From fd38c77f4394ceac113151ebfc637fdfb98a54c4 Mon Sep 17 00:00:00 2001 From: Brett Jia Date: Sun, 30 Jun 2024 12:49:06 -0400 Subject: [PATCH] patch pip script --- scripts/build_cosmo.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/build_cosmo.sh b/scripts/build_cosmo.sh index ebd404ea..0472cac5 100755 --- a/scripts/build_cosmo.sh +++ b/scripts/build_cosmo.sh @@ -395,7 +395,7 @@ echo "::group::Test python" cd ${BUILDDIR} cd python-install -./bin/python.com --version +./bin/python --version echo "::endgroup::" ############### @@ -405,11 +405,11 @@ echo "::group::Preload pip" cd ${BUILDDIR} cd python-install -./bin/python.com -m ensurepip -./bin/python.com -m pip install -r ${WORKDIR}/baseline/requirements.txt +./bin/python -m ensurepip +./bin/python -m pip install -r ${WORKDIR}/baseline/requirements.txt -#python3 ${WORKDIR}/scripts/patch_pip_script.py ./bin/pip3 -#python3 ${WORKDIR}/scripts/patch_pip_script.py ./bin/pip${PYTHON_VER} +python3 ${WORKDIR}/scripts/patch_pip_script.py ./bin/pip3 +python3 ${WORKDIR}/scripts/patch_pip_script.py ./bin/pip${PYTHON_VER} echo "::endgroup::" ###################