Merge pull request #30346 from taosdata/tomchon-patch-15

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

View File

@ -400,6 +400,7 @@ function install_anode_venv() {
${csudo}${venvDir}/bin/pip3 install uwsgi ${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 torch --index-url https://download.pytorch.org/whl/cpu
${csudo}${venvDir}/bin/pip3 install --upgrade keras ${csudo}${venvDir}/bin/pip3 install --upgrade keras
${csudo}${venvDir}/bin/pip3 install requests
echo -e "Install python library for venv completed!" echo -e "Install python library for venv completed!"
} }