Skip to content

Commit 98c4b45

Browse files
committed
Make the optional dependency installation compatible with zsh
1 parent 180a8ab commit 98c4b45

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ source env/bin/activate
3030
pip install openai-agents
3131
```
3232

33-
For voice support, install with the optional `voice` group: `pip install openai-agents[voice]`.
33+
For voice support, install with the optional `voice` group: `pip install 'openai-agents[voice]'`.
3434

3535
## Hello world example
3636

docs/voice/quickstart.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Make sure you've followed the base [quickstart instructions](../quickstart.md) for the Agents SDK, and set up a virtual environment. Then, install the optional voice dependencies from the SDK:
66

77
```bash
8-
pip install openai-agents[voice]
8+
pip install 'openai-agents[voice]'
99
```
1010

1111
## Concepts

src/agents/voice/imports.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
except ImportError as _e:
66
raise ImportError(
77
"`numpy` + `websockets` are required to use voice. You can install them via the optional "
8-
"dependency group: `pip install openai-agents[voice]`."
8+
"dependency group: `pip install 'openai-agents[voice]'`."
99
) from _e
1010

1111
__all__ = ["np", "npt", "websockets"]

0 commit comments

Comments
 (0)