Skip to content

Commit

Permalink
Update install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
laullon authored Sep 27, 2023
1 parent 5b64f30 commit 4df1b6c
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions sh/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
}

Expand All @@ -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}"
}

Expand Down

0 comments on commit 4df1b6c

Please sign in to comment.