Skip to content

Commit 2a7faa8

Browse files
authored
README.md: Update install steps to escape brackets (#298)
## Problem Some shells (e.g. zsh) treat the '[]' in the argument as a shell expansion, and fail to pass the correct argument to pip: % pip3 install pinecone-client[grpc] zsh: no matches found: pinecone-client[grpc] ## Solution Fix by quoting the package name. ## Type of Change - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] This change requires a documentation update - [ ] Infrastructure change (CI configs, etc) - [x] Non-code change (docs, etc) - [ ] None of the above: (explain here) ## Test Plan Confirmed install still works with zsh and bash on macOS.
1 parent e100f3c commit 2a7faa8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ If you are aiming to maximimize performance, you can install additional gRPC dep
3535
pip3 install pinecone-client
3636

3737
# Install the latest version, with extra grpc dependencies
38-
pip3 install pinecone-client[grpc]
38+
pip3 install "pinecone-client[grpc]"
3939

4040
# Install a specific version
4141
pip3 install pinecone-client==3.0.0

0 commit comments

Comments
 (0)