Skip to content

Commit 0a14357

Browse files
committed
docs: quote extras in pip install commands to prevent shell globbing
- Add quotes around extras in all pip install examples - Prevents 'no matches found' errors in zsh and similar shells - Affects both installation section and inline examples
1 parent 0e7fae6 commit 0a14357

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ pip install stackone-ai
3535

3636
```bash
3737
# Install with MCP server support (requires Python 3.10+)
38-
pip install stackone-ai[mcp]
38+
pip install 'stackone-ai[mcp]'
3939

4040
# Install with CrewAI examples (requires Python 3.10+)
41-
pip install stackone-ai[examples]
41+
pip install 'stackone-ai[examples]'
4242

4343
# Install everything
44-
pip install stackone-ai[mcp,examples]
44+
pip install 'stackone-ai[mcp,examples]'
4545
```
4646

4747
## Quick Start
@@ -106,7 +106,7 @@ for tool_call in response.tool_calls:
106106

107107
CrewAI uses LangChain tools natively, making integration seamless:
108108

109-
> **Note**: CrewAI requires Python 3.10+. Install with `pip install stackone-ai[examples]`
109+
> **Note**: CrewAI requires Python 3.10+. Install with `pip install 'stackone-ai[examples]'`
110110
111111
```python
112112
from crewai import Agent, Crew, Task

0 commit comments

Comments
 (0)