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