From c72581750ae2e00590a4254dda9ba3930c82d14f Mon Sep 17 00:00:00 2001 From: shenjack <3695888@qq.com> Date: Mon, 10 Jun 2024 16:32:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9readme=20=E6=8E=A8=E8=8D=90?= =?UTF-8?q?=E4=BD=BF=E7=94=A8=20rust=E7=89=88=EF=BC=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- readme.md | 74 ++++++++++++++++++++++++++++++++++++------------------- 1 file changed, 49 insertions(+), 25 deletions(-) diff --git a/readme.md b/readme.md index a37f15a..13217d2 100644 --- a/readme.md +++ b/readme.md @@ -5,40 +5,24 @@ > 出于某个企鹅, 和保护 作者 和 原项目 ( ica ) 的原因 \ > 功能请自行理解 -## 使用方法 ( Python 版 ) - -- 安装依赖 +## 通用环境准备 +- 安装 Python 3.8+ ```powershell -python -m pip install -r requirement.txt +# 你可以使用你自己的方法安装 Python +# 例如 +choco install python +# 或者 +scoop install python ``` -> 如果你想使用虚拟环境 \ -> 可以使用 `python -m venv venv` 创建虚拟环境 \ -> 然后使用 `venv\Scripts\activate` 激活虚拟环境 \ -> 最后使用 `python -m pip install -r requirements.txt` 安装依赖 - -- 修改配置文件 - -```powershell -Copy-Item config-temp.toml config.toml -# 欸我就用 powershell -``` - -- icalingua 启动! +- 启动 icalingua 后端 ```bash # 用你自己的方法启动你的 icalingua 后端 # 例如 docker start icalingua -# 或者 -docker up -d -``` - -- bot 启动! - -```powershell -python connect.py +docker-compose up -d ``` ## 使用方法 ( Rust 版 ) @@ -58,3 +42,43 @@ cargo build --release ``` 运行 + +```powershell +cargo run --release -- -c config.toml +``` + +## 使用方法 ( Python 版 ) + +- 安装依赖 + +```powershell +python -m pip install -r requirement.txt +``` + +> 如果你想使用虚拟环境 \ +> 可以使用 `python -m venv venv` 创建虚拟环境 \ +> 然后使用 `venv\Scripts\activate` 激活虚拟环境 \ +> 最后使用 `python -m pip install -r requirements.txt` 安装依赖 + +- 修改配置文件 + +```powershell +Copy-Item config-temp.toml config.toml +# 欸我就用 powershell +``` + +- icalingua 启动! + +```bash +# 用你自己的方法启动你的 icalingua 后端 +# 例如 +docker start icalingua +# 或者 +docker up -d +``` + +- bot 启动! + +```powershell +python connect.py +```