feat: Migrate to uv for environment management

This commit is contained in:
shiyu
2025-09-06 14:11:15 +08:00
parent 2a78d809af
commit 5126dae411
5 changed files with 1749 additions and 88 deletions

View File

@@ -70,8 +70,10 @@
2. **创建并激活 Python 虚拟环境**
我们推荐使用 `uv` 来管理虚拟环境,以获得最佳性能。
```bash
python3 -m venv .venv
uv venv
source .venv/bin/activate
# On Windows: .venv\Scripts\activate
```
@@ -79,7 +81,7 @@
3. **安装依赖**
```bash
pip install -r requirements.txt
uv sync
```
4. **初始化环境**