Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions exercises/Python/04-building-multi-agent-system.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,35 +298,35 @@ analyze_evidence_task:

**From repository root:**

_macOS / Linux_
```bash
# macOS / Linux
python3 ./project/Python/starter-project/main.py
```

_Windows (PowerShell)_
```powershell
# Windows (PowerShell)
python .\project\Python\starter-project\main.py
```

_Windows (Command Prompt)_
```cmd
# Windows (Command Prompt)
python .\project\Python\starter-project\main.py
```

**From starter-project folder:**

_macOS / Linux_
```bash
# macOS / Linux
python3 main.py
```

_Windows (PowerShell)_
```powershell
# Windows (PowerShell)
python main.py
```

_Windows (Command Prompt)_
```cmd
# Windows (Command Prompt)
python main.py
```

Expand Down