From bcec12896df9ba6fcedea13254bdc0857f2fbef6 Mon Sep 17 00:00:00 2001 From: haoranchen Date: Sat, 22 Mar 2025 15:24:19 +0800 Subject: [PATCH] fix: add requests pkg in tdgpt install.sh --- tools/tdgpt/script/install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/tdgpt/script/install.sh b/tools/tdgpt/script/install.sh index 9952b7f0af..bd7f001d4d 100755 --- a/tools/tdgpt/script/install.sh +++ b/tools/tdgpt/script/install.sh @@ -400,6 +400,8 @@ function install_anode_venv() { ${csudo}${venvDir}/bin/pip3 install uwsgi ${csudo}${venvDir}/bin/pip3 install torch --index-url https://download.pytorch.org/whl/cpu ${csudo}${venvDir}/bin/pip3 install --upgrade keras + ${csudo}${venvDir}/bin/pip3 install requests + echo -e "Install python library for venv completed!" }