From cd0806550004a658209bb90d1601247922c0143e Mon Sep 17 00:00:00 2001 From: aaron <> Date: Mon, 28 Apr 2025 17:36:38 +0800 Subject: [PATCH] update --- qinglong_task.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/qinglong_task.sh b/qinglong_task.sh index a018522..de4b83e 100755 --- a/qinglong_task.sh +++ b/qinglong_task.sh @@ -82,13 +82,12 @@ if ! pip list | grep -q "pandas"; then pip install --upgrade pip # 使用国内镜像源安装依赖 - # pip install -i https://mirrors.aliyun.com/pypi/simple/ --prefer-binary -r requirements.txt + pip install -i https://mirrors.aliyun.com/pypi/simple/ --prefer-binary -r requirements.txt # 验证关键依赖是否安装成功 - if ! pip list | grep -q "pandas"; then - echo "依赖安装失败,尝试单独安装关键包..." - pip install -r requirements.txt - fi + # if ! pip list | grep -q "pandas"; then + # pip install -r requirements.txt + # fi # 再次验证 if ! pip list | grep -q "pandas"; then