1 Star 0 Fork 47

jangocheng/DB-GPT

forked from Gitee 极速下载/DB-GPT 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
run.sh 568 Bytes
一键复制 编辑 原始数据 按行查看 历史
csunny 提交于 2023-05-15 15:25 . Update: python version set 3.10
#!/bin/bash
function find_python_command() {
if command -v python &> /dev/null
then
echo "python"
elif command -v python3 &> /dev/null
then
echo "python3"
else
echo "Python not found. Please install python."
exit 1
fi
}
PYTHONCMD=$(find_python_command)
nohup PYTHONCMD pilot/server/llmserver.py >> /root/server.log 2>&1 &
while [ `grep -c "Uvicorn running on" /root/server.log` -eq '0' ];do
sleep 1s;
echo "wait server running"
done
echo "server running"
PYTHONCMD pilot/server/webserver.py
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/jangocheng/DB-GPT.git
[email protected]:jangocheng/DB-GPT.git
jangocheng
DB-GPT
DB-GPT
main

搜索帮助