From 48a769309b87d269e436a8c9dc6f3248219158f4 Mon Sep 17 00:00:00 2001 From: tian <11429339@qq.com> Date: Fri, 24 Jul 2026 09:04:44 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20get-pip.py=20=E5=8A=A0=20--no-setuptools?= =?UTF-8?q?=20--no-wheel=EF=BC=8C=E5=8F=AA=E9=9C=80=20pip=20wheel=20?= =?UTF-8?q?=E5=8D=B3=E5=8F=AF=E7=A6=BB=E7=BA=BF=E5=AE=89=E8=A3=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/deploy/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy/install.sh b/scripts/deploy/install.sh index ad7504d..8657e24 100644 --- a/scripts/deploy/install.sh +++ b/scripts/deploy/install.sh @@ -60,7 +60,7 @@ if [ -d "$INSTALL_DIR/deps" ] && ls "$INSTALL_DIR/deps"/*.whl >/dev/null 2>&1; t # 先确保 pip3 可用(离线安装) if ! command -v pip3 &>/dev/null; then if [ -f "$INSTALL_DIR/deps/get-pip.py" ]; then - python3 "$INSTALL_DIR/deps/get-pip.py" --no-index --find-links="$INSTALL_DIR/deps/" 2>&1 + python3 "$INSTALL_DIR/deps/get-pip.py" --no-index --find-links="$INSTALL_DIR/deps/" --no-setuptools --no-wheel 2>&1 fi fi if pip3 install --force-reinstall "$INSTALL_DIR"/deps/*.whl 2>&1; then