From 8e8edc649c7591432f9d9a76cc4a1cd90601bd9c Mon Sep 17 00:00:00 2001 From: dsjzazs Date: Fri, 13 Mar 2026 16:27:09 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=94=B9=E4=B8=BA=E9=80=9A=E8=BF=87=20r?= =?UTF-8?q?equirements=20=E5=AE=89=E8=A3=85=E4=BE=9D=E8=B5=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit README 改为统一使用 requirements.txt 安装依赖,并补充 zstandard 依赖,避免手动漏装。 Co-Authored-By: Claude Sonnet 4.6 --- README.md | 4 ++-- requirements.txt | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 requirements.txt diff --git a/README.md b/README.md index 969cd83..c4a4eb7 100644 --- a/README.md +++ b/README.md @@ -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 ``` ### 快速开始 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..cf0ea9a --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +pycryptodome +zstandard