Skip to content

Commit

Permalink
Update README.md (#323)
Browse files Browse the repository at this point in the history
Correction Poetry installation Scripts

## Problem

There was an error in the poetry installation snippet in the Readme

`poetry add pinecone` instead of `poetry add pinecone-client`

## Solution

Replaced `poetry add pinecone`  with  `poetry add pinecone-client`

## 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

Describe specific steps for validating this change.
  • Loading branch information
GameSetAndMatch committed Mar 14, 2024
1 parent 8f2c370 commit b02388e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ pip3 install "pinecone-client[grpc]"==3.0.0

```shell
# Install the latest version
poetry add pinecone
poetry add pinecone-client

# Install the latest version, with grpc extras
poetry add pinecone --extras grpc
poetry add pinecone-client --extras grpc

# Install a specific version
poetry add pinecone-client==3.0.0
Expand Down

0 comments on commit b02388e

Please sign in to comment.