-
Notifications
You must be signed in to change notification settings - Fork 5
如何部署 redbot
Kaedehara Kazuha edited this page May 28, 2022
·
4 revisions
本文采用 CC BY-NC-SA 4.0 协议 进行共享,转载请注明原作者与本文链接!
虽然 redbot
所依赖的 Ariadne
框架目前要求的 Python 版本为 3.8 ~ 3.10
但 redbot
使用了 Python 3.10 的新特性因此仅能使用 Python >=3.10 运行
注1:假设你不想用
Poetry
,你可直接跳过
注2:此处假设你已在你的计算机或服务器上安装好 Python 3.10
redbot
使用 Poetry
来管理项目依赖关系
curl -sSL https://install.python-poetry.org | python3 -
注:请使用 Windows 8 以上版本的 Windows,并通过
Windows Powershell
而不是Powershell Core
执行下面的命令
(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | python -
此部分已过时,建议使用
pipx
点击展开阅读
假如你没有通过科学的姿势连接网络,上面的命令也许会超时失败
因此你也可以直接通过 pip
来安装 Poetry
注:在 Windows 上使用 pip 时请不要设置系统代理,请通过设置镜像源来提升 pip 的下载速度
python3.10 -m pip install poetry
python -m pip install poetry
git clone https://github.com/Graiax-Community/redbot.git
cd redbot
此处假设你所使用的 Python 版本为 3.10.1
poetry env use 3.10.1
poetry install
请不要将以下命令写入 *.sh
、*.bat
、*.cmd
、*.ps1
等脚本中使用
poetry run python main.py
首次启动之后会生成配置文件并退出,请在 bot 退出后填写配置文件
- 其中,数据库链接使用 uri 形式,填写格式如下
- SQLite:
sqlite+aiosqlite:///data/database.db
,一般情况下只需更改database.db
的database
,参考 👉 sqlalchemy的文档 - MySQL / MariaDB:
mysql+asyncmy://{user}:{password}@{hostname}:{port}/{dbname}?charset=utf8mb4
,此为示例,具体参数请参考sqlalchemy的文档
- SQLite:
不会吧不会吧,不会有人连最小化都不会吧
sudo yum install repl-release
sudo yum install screen
sudo apt update
sudo apt install screen
-
创建一个 screen
screen -S redbot
-
将 screen 放到后台
在 screen 内先按下
ctrl + a
组合键,再按下d
键 -
将后台的 screen 调出来
screen -x redbot # 回到名为 redbot 的 screen screen -x # 回到最近用过的 screen screen -r # 回到最近用过的 screen