修改readme 推荐使用 rust版(

This commit is contained in:
shenjack 2024-06-10 16:32:09 +08:00
parent 31a490b40c
commit c72581750a
Signed by: shenjack
GPG Key ID: 7B1134A979775551

View File

@ -5,6 +5,48 @@
> 出于某个企鹅, 和保护 作者 和 原项目 ( ica ) 的原因 \ > 出于某个企鹅, 和保护 作者 和 原项目 ( ica ) 的原因 \
> 功能请自行理解 > 功能请自行理解
## 通用环境准备
- 安装 Python 3.8+
```powershell
# 你可以使用你自己的方法安装 Python
# 例如
choco install python
# 或者
scoop install python
```
- 启动 icalingua 后端
```bash
# 用你自己的方法启动你的 icalingua 后端
# 例如
docker start icalingua
docker-compose up -d
```
## 使用方法 ( Rust 版 )
- 准备一个 Python 环境
- 修改好配置文件
```powershell
Copy-Item config-temp.toml config.toml
```
- 编译
```powershell
cargo build --release
```
运行
```powershell
cargo run --release -- -c config.toml
```
## 使用方法 ( Python 版 ) ## 使用方法 ( Python 版 )
- 安装依赖 - 安装依赖
@ -40,21 +82,3 @@ docker up -d
```powershell ```powershell
python connect.py python connect.py
``` ```
## 使用方法 ( Rust 版 )
- 准备一个 Python 环境
- 修改好配置文件
```powershell
Copy-Item config-temp.toml config.toml
```
- 编译
```powershell
cargo build --release
```
运行