Ai
1 Star 2 Fork 0

科大讯飞/AutoSpark

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
install_tool_dependencies.sh 399 Bytes
一键复制 编辑 原始数据 按行查看 历史
ybyang 提交于 2023-08-10 14:50 +08:00 . first submit
#!/bin/bash
# Run the project's main requirements.txt
pip install -r /app/requirements.txt
# Loop through the tools directories and install their requirements.txt if they exist
for tool in /app/autospark/tools/* ; do
if [ -d "$tool" ] && [ -f "$tool/requirements.txt" ]; then
echo "Installing requirements for tool: $(basename "$tool")"
pip install -r "$tool/requirements.txt"
fi
done
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/iflytek/AutoSpark.git
git@gitee.com:iflytek/AutoSpark.git
iflytek
AutoSpark
AutoSpark
main

搜索帮助