app/docs/zh/deploy/install.md
snowykami 3341505715
Some checks failed
Deploy VitePress site to Pages / build (push) Failing after 2m52s
更新LiteyukiBot克隆命令中的镜像链接
2024-11-09 23:52:17 +08:00

1.9 KiB
Raw Permalink Blame History

title order
安装 1

安装

常规部署

  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构建

  1. 安装 Docker
  2. 克隆项目 git clone https://github.com/LiteyukiStudio/LiteyukiBot --depth=1
  3. 进入轻雪目录 cd LiteyukiBot
  4. 构建镜像 docker build -t liteyukibot .
  5. 启动容器 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,包括chromiumnode等进程,其他插件占用视具体插件而定,建议1GB以上
  • 硬盘: 至少1GB空间

Warning

如果装置上有多个环境,请使用path/to/python -m pip install -r requirements.txt来安装依赖,path/to/python 为你的Python可执行文件路径

Warning

轻雪的更新功能依赖Git如果你没有安装Git直接下载源代码运行你将无法使用更新功能

其他问题请移步至答疑