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

Commit 2bdb923

Browse files
authored
docs: Improve cross-platform setup instructions in README
- Add Windows-specific commands with collapsible section
1 parent 753590a commit 2bdb923

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,12 +21,26 @@ 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
```
2930

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

3246
- `LIVEKIT_URL`

0 commit comments

Comments
 (0)