You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Set `PYTHONPATH` (required in every new PowerShell session):
56
+
57
+
```powershell
58
+
$env:PYTHONPATH="core;exports"
59
+
```
60
+
24
61
## Alpine Linux Setup
25
62
26
63
If you are using Alpine Linux (e.g., inside a Docker container), you must install system dependencies and use a virtual environment before running the setup script:
@@ -100,6 +137,12 @@ For running agents with real LLMs:
100
137
export ANTHROPIC_API_KEY="your-key-here"
101
138
```
102
139
140
+
Windows (PowerShell):
141
+
142
+
```powershell
143
+
$env:ANTHROPIC_API_KEY="your-key-here"
144
+
```
145
+
103
146
## Running Agents
104
147
105
148
All agent commands must be run from the project root with `PYTHONPATH` set:
@@ -109,9 +152,14 @@ All agent commands must be run from the project root with `PYTHONPATH` set:
0 commit comments