From 5782591317ae377d84d2d6a834e4c4075d45a5d6 Mon Sep 17 00:00:00 2001 From: 4paradigm <4paradigm@4paradigmdeMacBook-Pro.local> Date: Sun, 20 Sep 2026 14:49:19 +0800 Subject: [PATCH] fix python path --- vllm_wrapper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vllm_wrapper.sh b/vllm_wrapper.sh index d8026e8..33fbbb1 100644 --- a/vllm_wrapper.sh +++ b/vllm_wrapper.sh @@ -7,7 +7,7 @@ if [ "$1" = "serve" ] && [ -n "$2" ]; then MODEL_DIR="$2" shift 2 - FIXED_DIR=$(python3 /opt/fix_tokenizer.py "$MODEL_DIR") + FIXED_DIR=$(/opt/conda/bin/python /opt/fix_tokenizer.py "$MODEL_DIR") if [ -n "$FIXED_DIR" ]; then exec /opt/conda/bin/vllm_real serve "$MODEL_DIR" --tokenizer "$FIXED_DIR" "$@" else