From 9805ba56131921ece7c1359d6cd5e2b3f340338d Mon Sep 17 00:00:00 2001 From: "Joshua J. Cogliati" Date: Wed, 10 Jul 2024 10:51:09 -0600 Subject: [PATCH] Changing to calling pip from python command. --- build_raven | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_raven b/build_raven index 145393f34c..8e039770be 100755 --- a/build_raven +++ b/build_raven @@ -109,7 +109,7 @@ fi (cd $PYTHON_FMU_DIR && ./build_pythonfmu || echo PythonFMU not built) -PIP_COMMAND=pip3 +PIP_COMMAND="$PYTHON_COMMAND -m pip" if [[ $EDITABLE == 0 ]] then # Don't install editable (cd $RAVEN_BUILD_DIR && ${PIP_COMMAND} --verbose install . --upgrade --target ./install)