Merge pull request #30345 from taosdata/tomchon-patch-14

fix: add requests pkg in tdgpt install.sh
This commit is contained in:
WANG Xu 2025-03-22 16:00:21 +08:00 committed by GitHub
commit 05fd1cd12d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -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!"
}