From 76d72c7fe59cd90f8ce9d50a0cf065b81b079997 Mon Sep 17 00:00:00 2001 From: tian <11429339@qq.com> Date: Thu, 23 Jul 2026 19:07:33 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20pip=20install=20=E5=B7=B2=E5=AE=89?= =?UTF-8?q?=E8=A3=85=E6=97=B6=E4=B8=8D=E6=8A=A5=E9=94=99?= 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 c35795d..fab7bd1 100644 --- a/scripts/deploy/install.sh +++ b/scripts/deploy/install.sh @@ -57,7 +57,7 @@ fi # 安装 Python 依赖(全局,root 可访问) if [ -d "$INSTALL_DIR/deps" ] && ls "$INSTALL_DIR/deps"/*.whl >/dev/null 2>&1; then - pip3 install "$INSTALL_DIR"/deps/*.whl 2>/dev/null && echo " ✓ Python 依赖已安装" || echo " ⚠ Python 依赖安装失败" + pip3 install "$INSTALL_DIR"/deps/*.whl 2>&1 || true; echo " ✓ Python 依赖已就绪" fi # 安装/更新服务