更新 AGENTS.md,添加运行命令示例,强调使用 uv 运行脚本以自动安装依赖

This commit is contained in:
严浩
2026-01-09 15:11:51 +08:00
parent 103117f8f9
commit 57dc96bd90

View File

@@ -40,7 +40,14 @@ import sympy as sp
# Your code here... # Your code here...
``` ```
使用 `uv run script.py` 即可自动安装依赖并执行。 **运行命令**
```bash
uv run script.py # ✅ 正确uv 解析 PEP 723 metadata自动安装依赖
uv run python script.py # ❌ 错误:直接调用 python不会读取 inline metadata
```
> ⚠️ **必须使用 `uv run script.py`**,不要加 `python`
# Output Format (The Final Markdown Report) # Output Format (The Final Markdown Report)