mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-13 14:27:26 +08:00
snowykami
3341505715
Some checks failed
Deploy VitePress site to Pages / build (push) Failing after 2m52s
1.9 KiB
1.9 KiB
title | order |
---|---|
安装 | 1 |
安装
常规部署
- 安装
Git
和Python3.10+
环境
# 克隆项目到本地,轻雪使用Git进行版本管理,该步骤为必要项
git clone https://github.com/LiteyukiStudio/LiteyukiBot --depth=1 # 若你不能访问Github,可以使用Liteyuki镜像:https://git.liteyuki.icu/bot/app
# 切换到Bot目录下
cd LiteyukiBot
# 创建虚拟环境
python -m venv venv
# 激活虚拟环境
.\venv\Scripts\activate # Windows
source venv/bin/activate # Linux
# 安装依赖
pip install -r requirements.txt
# 启动Bot
python main.py
使用Docker构建
- 安装
Docker
- 克隆项目
git clone https://github.com/LiteyukiStudio/LiteyukiBot --depth=1
- 进入轻雪目录
cd LiteyukiBot
- 构建镜像
docker build -t liteyukibot .
- 启动容器
docker run -p 20216:20216 -v $(pwd):/liteyukibot -v $(pwd)/.cache:/root/.cache liteyukibot
Tip
Windows请使用项目绝对目录
/path/to/LiteyukiBot
代替$(pwd)
若你修改了端口号请将20216:20216
中的20216
替换为你的端口号
装置要求
- Windows系统版本最低
Windows10+
/Windows Server 2019+
- Linux系统要支持Python3.10+,推荐
Ubuntu 20.04+
(别用你那b CentOS) - CPU: 至少
1vCPU
- 内存: Bot无其他插件会占用
300~500MB
,包括chromium
及node
等进程,其他插件占用视具体插件而定,建议1GB
以上 - 硬盘: 至少
1GB
空间
Warning
如果装置上有多个环境,请使用
path/to/python -m pip install -r requirements.txt
来安装依赖,path/to/python
为你的Python可执行文件路径
Warning
轻雪的更新功能依赖Git,如果你没有安装Git直接下载源代码运行,你将无法使用更新功能