From 3eaf23a56b7007c904a8a0cc5c6ea77356906a55 Mon Sep 17 00:00:00 2001 From: snowykami Date: Mon, 14 Oct 2024 01:02:57 +0800 Subject: [PATCH] =?UTF-8?q?:memo:=20=E6=96=87=E6=A1=A3=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E5=B8=B8=E8=A7=84=E9=83=A8=E7=BD=B2=EF=BC=8C=E5=BC=BA=E5=88=B6?= =?UTF-8?q?=E4=BD=BF=E7=94=A8=E8=99=9A=E6=8B=9F=E7=8E=AF=E5=A2=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/zh/deploy/install.md | 24 +++++++++++++++++------- scripts/update.sh | 1 + 2 files changed, 18 insertions(+), 7 deletions(-) create mode 100644 scripts/update.sh diff --git a/docs/zh/deploy/install.md b/docs/zh/deploy/install.md index f951d401..4fb321b2 100644 --- a/docs/zh/deploy/install.md +++ b/docs/zh/deploy/install.md @@ -2,11 +2,13 @@ title: 安装 order: 1 --- + # 安装 ## **常规部署** -1. 安装 [`Git`](https://git-scm.com/download/) 和 [`Python3.10+`](https://www.python.org/downloads/release/python-31010/) 环境 +1. 安装 [`Git`](https://git-scm.com/download/) 和 [ + `Python3.10+`](https://www.python.org/downloads/release/python-31010/) 环境 ```bash # 克隆项目到本地,轻雪使用Git进行版本管理,该步骤为必要项 @@ -14,19 +16,25 @@ git clone https://github.com/LiteyukiStudio/LiteyukiBot --depth=1 # 若你不能 # 切换到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 ``` -> [!tip] -> 推荐使用虚拟环境来运行轻雪,以避免依赖冲突,你可以使用`python -m venv .venv`来创建虚拟环境,然后使用`.venv\Scripts\activate`来激活虚拟环境(Linux下使用`source .venv/bin/activate`激活) - ## **使用Docker构建** 1. 安装 [`Docker`](https://docs.docker.com/get-docker/) -2. 克隆项目 `git clone https://github.com/LiteyukiStudio/LiteyukiBot --depth=1` +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` @@ -36,8 +44,9 @@ python main.py > 若你修改了端口号请将`20216:20216`中的`20216`替换为你的端口号 ## **使用TRSS Scripts部署** - [TRSS_Liteyuki轻雪机器人管理脚本](https://timerainstarsky.github.io/TRSS_Liteyuki/),该功能由TRSS提供支持,不是LiteyukiBot官方提供的功能,推荐使用`Arch Linux` +[TRSS_Liteyuki轻雪机器人管理脚本](https://timerainstarsky.github.io/TRSS_Liteyuki/) +,该功能由TRSS提供支持,不是LiteyukiBot官方提供的功能,推荐使用`Arch Linux` ## **装置要求** @@ -48,7 +57,8 @@ python main.py - 硬盘: 至少`1GB`空间 > [!warning] -> 如果装置上有多个环境,请使用`path/to/python -m pip install -r requirements.txt`来安装依赖,`path/to/python`为你的Python可执行文件路径 +> 如果装置上有多个环境,请使用`path/to/python -m pip install -r requirements.txt`来安装依赖,`path/to/python` +> 为你的Python可执行文件路径 > [!warning] > 轻雪的更新功能依赖Git,如果你没有安装Git直接下载源代码运行,你将无法使用更新功能 diff --git a/scripts/update.sh b/scripts/update.sh new file mode 100644 index 00000000..d1a6147b --- /dev/null +++ b/scripts/update.sh @@ -0,0 +1 @@ +git pull origin main \ No newline at end of file