Skip to content

Commit 8b52134

Browse files
authored
Add quotes to the pip installation command in README (#420)
This is required when using certain shells such as zsh, as zsh tries to expand it otherwise, leading to a syntax error.
1 parent 66a1c3c commit 8b52134

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@ The complete documentation for GQL can be found at
4747

4848
You can install GQL with all the optional dependencies using pip:
4949

50-
pip install gql[all]
50+
```bash
51+
# Quotes may be required on certain shells such as zsh.
52+
pip install "gql[all]"
53+
```
5154

5255
> **NOTE**: See also [the documentation](https://gql.readthedocs.io/en/latest/intro.html#less-dependencies) to install GQL with less extra dependencies depending on the transports you would like to use or for alternative installation methods.
5356

0 commit comments

Comments
 (0)