加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/GaiZhenbiao/ChuanhuChatGPT
克隆/下载
run_Linux.sh 669 Bytes
一键复制 编辑 原始数据 按行查看 历史
JohnSmith 提交于 2023-09-16 17:40 . feat: 加入LLaMA-7B-Chat
#!/bin/bash
# 获取脚本所在目录
script_dir=$(dirname "$(readlink -f "$0")")
# 将工作目录更改为脚本所在目录
cd "$script_dir" || exit
# 检查Git仓库是否有更新
git remote update
pwd
if ! git status -uno | grep 'up to date' > /dev/null; then
# 如果有更新,关闭当前运行的服务器
pkill -f ChuanhuChatbot.py
# 拉取最新更改
git pull
# 安装依赖
pip3 install -r requirements.txt
# 重新启动服务器
nohup python3 ChuanhuChatbot.py &
fi
# 检查ChuanhuChatbot.py是否在运行
if ! pgrep -f ChuanhuChatbot.py > /dev/null; then
# 如果没有运行,启动服务器
nohup python3 ChuanhuChatbot.py &
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化