docs: add .venv activation requirement to CLAUDE.md
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
f79b4cc217
commit
573f75b3ef
|
|
@ -8,6 +8,15 @@ TradingAgents is a multi-agent LLM financial trading framework built with LangGr
|
||||||
|
|
||||||
## Essential Commands
|
## Essential Commands
|
||||||
|
|
||||||
|
### Python Environment
|
||||||
|
Always activate the project's virtual environment before running Python commands:
|
||||||
|
```bash
|
||||||
|
# Windows
|
||||||
|
.venv\Scripts\activate
|
||||||
|
# Linux/macOS
|
||||||
|
source .venv/bin/activate
|
||||||
|
```
|
||||||
|
|
||||||
### Installation (requires Python >=3.10)
|
### Installation (requires Python >=3.10)
|
||||||
```bash
|
```bash
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue