From beaf5cc5cc50159fa65346ed998aa5fafc94324d Mon Sep 17 00:00:00 2001 From: Matthew Johnson Date: Fri, 24 May 2024 10:54:05 -0400 Subject: [PATCH] adjust setup-venv.sh script --- setup-venv.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup-venv.sh b/setup-venv.sh index d6c21cc..4b97bd8 100755 --- a/setup-venv.sh +++ b/setup-venv.sh @@ -3,10 +3,11 @@ MAYBE_PYTHON=$(find /apps -maxdepth 1 -type l -name "python*") if [[ -n "$MAYBE_PYTHON" ]]; then - echo "using $MAYBE_PYTHON..." PYTHON3="$MAYBE_PYTHON/bin/python3" + echo "using $MAYBE_PYTHON/bin/python3 ($(PYTHON3 -V))" else PYTHON3="python3" + echo "using $(which python3) ($(PYTHON3 -V))" fi # create and activate virtualenv