Skip to content
This repository was archived by the owner on Oct 1, 2025. It is now read-only.

Commit 039c2f9

Browse files
authored
Merge pull request #19 from grootgordon/patch-1
docs: Improve cross-platform setup instructions in README
2 parents 0a49fad + 2bdb923 commit 039c2f9

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,27 @@ A basic example of a voice agent using LiveKit and Python.
2121
Clone the repository and install dependencies to a virtual environment:
2222

2323
```console
24+
# Linux/macOS
2425
cd voice-pipeline-agent-python
2526
python3 -m venv venv
2627
source venv/bin/activate
2728
pip install -r requirements.txt
2829
python3 agent.py download-files
2930
```
3031

32+
<details>
33+
<summary>Windows instructions (click to expand)</summary>
34+
35+
```cmd
36+
:: Windows (CMD/PowerShell)
37+
cd voice-pipeline-agent-python
38+
python3 -m venv venv
39+
venv\Scripts\activate
40+
pip install -r requirements.txt
41+
```
42+
</details>
43+
44+
3145
Set up the environment by copying `.env.example` to `.env.local` and filling in the required values:
3246

3347
- `LIVEKIT_URL`

0 commit comments

Comments
 (0)