use default python and pip (#178)

This commit is contained in:
Bowen Liang
2023-10-09 02:28:20 -05:00
committed by GitHub
parent a03ababc80
commit 7cb8208065
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
set -x set -x
# pip path # pip path
pip_path=${PIP_PATH:-"/usr/local/bin/pip3"} pip_path=${PIP_PATH:-"pip3"}
sbinDir=$(cd "$(dirname "$0")"; pwd) sbinDir=$(cd "$(dirname "$0")"; pwd)
baseDir=$(cd "$sbinDir/.." && pwd -P) baseDir=$(cd "$sbinDir/.." && pwd -P)

View File

@@ -1,8 +1,8 @@
#!/usr/bin/env bash #!/usr/bin/env bash
python_path=${PYTHON_PATH:-"python3"}
set -x set -x
python_path=${PYTHON_PATH:-"/usr/local/bin/python3"}
readonly CHAT_APP_NAME="supersonic_chat" readonly CHAT_APP_NAME="supersonic_chat"
readonly SEMANTIC_APP_NAME="supersonic_semantic" readonly SEMANTIC_APP_NAME="supersonic_semantic"
readonly LLMPARSER_APP_NAME="supersonic_llmparser" readonly LLMPARSER_APP_NAME="supersonic_llmparser"