From 35a2cc7d20878e19e7ef871e59a793d79ed2eabd Mon Sep 17 00:00:00 2001 From: wangfq Date: Wed, 27 May 2026 11:21:43 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=B7=BB=E5=8A=A0=20.venv/=20?= =?UTF-8?q?=E5=88=B0=20gitignore=EF=BC=8C=E6=9B=B4=E6=96=B0=20README=20?= =?UTF-8?q?=E5=8A=A0=E5=85=A5=20venv=20=E6=AD=A5=E9=AA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 5 +++++ README.md | 3 +++ 2 files changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index 672cb33..9c88e2d 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,8 @@ __pycache__/ *.egg-info/ .env *.log + +venv/ +.venv/ +env/ + diff --git a/README.md b/README.md index 1f36eb4..37a2c4e 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,9 @@ ## 快速开始 ```bash +# 创建虚拟环境 +python3 -m venv .venv && source .venv/bin/activate + # 安装依赖 pip install -r requirements.txt