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}" }