From 4df1b6c14e658e7aafbe33e266f4cf287c5e68de Mon Sep 17 00:00:00 2001 From: German Laullon Date: Wed, 27 Sep 2023 12:50:44 +0200 Subject: [PATCH] Update install.sh --- sh/install.sh | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/sh/install.sh b/sh/install.sh index 7c53310..a2976c9 100755 --- a/sh/install.sh +++ b/sh/install.sh @@ -180,14 +180,6 @@ function detect_python(){ PYTHON_PATH=$(which python3) fi - if [ -z "$PYTHON_PATH" ]; then - PYTHON_PATH=$(which python2) - fi - - if [ -z "$PYTHON_PATH" ]; then - PYTHON_PATH=$(which python) - fi - echo "${PYTHON_PATH}" } @@ -196,14 +188,6 @@ function detect_pip(){ PIP_PATH=$(which pip3) fi - if [ -z "$PIP_PATH" ]; then - PIP_PATH=$(which pip2) - fi - - if [ -z "$PIP_PATH" ]; then - PIP_PATH=$(which pip) - fi - echo "${PIP_PATH}" }