fix: 改为通过 requirements 安装依赖

README 改为统一使用 requirements.txt 安装依赖,并补充 zstandard 依赖,避免手动漏装。

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
dsjzazs
2026-03-13 16:27:09 +08:00
parent 7020409543
commit 8e8edc649c
2 changed files with 4 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ WCDB (微信的 SQLCipher 封装) 会在进程内存中缓存派生后的 raw ke
- Python 3.10+
- 微信 4.x
- `pip install pycryptodome`
- `pip install -r requirements.txt`
Windows
@@ -46,7 +46,7 @@ Linux
### 安装依赖
```bash
pip install pycryptodome
pip install -r requirements.txt
```
### 快速开始

2
requirements.txt Normal file
View File

@@ -0,0 +1,2 @@
pycryptodome
zstandard