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