Make the optional dependency installation compatible with zsh (#274)
This commit is contained in:
commit
65032208f2
3 changed files with 3 additions and 3 deletions
|
|
@ -30,7 +30,7 @@ source env/bin/activate
|
|||
pip install openai-agents
|
||||
```
|
||||
|
||||
For voice support, install with the optional `voice` group: `pip install openai-agents[voice]`.
|
||||
For voice support, install with the optional `voice` group: `pip install 'openai-agents[voice]'`.
|
||||
|
||||
## Hello world example
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
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:
|
||||
|
||||
```bash
|
||||
pip install openai-agents[voice]
|
||||
pip install 'openai-agents[voice]'
|
||||
```
|
||||
|
||||
## Concepts
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ try:
|
|||
except ImportError as _e:
|
||||
raise ImportError(
|
||||
"`numpy` + `websockets` are required to use voice. You can install them via the optional "
|
||||
"dependency group: `pip install openai-agents[voice]`."
|
||||
"dependency group: `pip install 'openai-agents[voice]'`."
|
||||
) from _e
|
||||
|
||||
__all__ = ["np", "npt", "websockets"]
|
||||
|
|
|
|||
Loading…
Reference in a new issue