1
0
Fork 0

Add readme.md

This commit is contained in:
administrator 2026-06-24 03:38:15 +00:00
parent 358e738b96
commit b56a92d09b
1 changed files with 15 additions and 0 deletions

15
readme.md Normal file
View File

@ -0,0 +1,15 @@
# 创建虚拟 Python 环境(在项目根目录执行)
```
python3 -m venv .venv
```
# 使用虚拟 Python 环境
```
source .venv/bin/activate
```
# 安装依赖
```
pip install akshare
```