This commit is contained in:
sam 2025-09-27 20:05:34 +08:00
parent 6384d7426c
commit c8e7955786

View File

@ -37,14 +37,14 @@
建议使用 Python 3.10+,并在虚拟环境中安装依赖。 建议使用 Python 3.10+,并在虚拟环境中安装依赖。
```bash ```bash
# 1. 创建并激活虚拟环境(示例使用 venv # 1. 创建并激活 Conda 环境
python -m venv .venv conda create -n llm-quant python=3.11 -y
source .venv/bin/activate # Windows 使用 .venv\Scripts\activate conda activate llm-quant
# 2. 安装项目依赖 # 2. 安装项目依赖
pip install -r requirements.txt pip install -r requirements.txt
# 3. 设置 TuShare Token(可写入环境变量或在 UI 中配置) # 3. 设置 TuShare Token
export TUSHARE_TOKEN="<your-token>" export TUSHARE_TOKEN="<your-token>"
``` ```