pinecone-io / pinecone-python-client

The Pinecone Python client
https://www.pinecone.io/docs
Apache License 2.0
304 stars 79 forks source link

README.md: Update install steps to escape brackets #298

Closed daverigby closed 9 months ago

daverigby commented 9 months ago

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

Test Plan

Confirmed install still works with zsh and bash on macOS.