You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The official Pinecone python package has been renamed from `pinecone-client` to `pinecone`. Please remove `pinecone-client` from your project dependencies and add the `pinecone` package to get the latest updates.
3
+
The official Pinecone python package has been renamed from `pinecone-client` to `pinecone`. To upgrade, please
4
+
**remove**`pinecone-client` from your project dependencies and then **add** the `pinecone` package to get the
5
+
latest updates.
6
+
7
+
> [!WARNING]
8
+
> Failure to remove `pinecone-client` before installing `pinecone` can lead to confusing interactions
9
+
> between the two packages.
10
+
11
+
```sh
12
+
pip uninstall pinecone-client
13
+
pip install pinecone
14
+
```
15
+
16
+
Or, if you are using grpc:
17
+
18
+
```sh
19
+
pip uninstall pinecone-client
20
+
pip install "pinecone[grpc]"
21
+
```
22
+
23
+
## Links
4
24
5
25
-`pinecone` on [PyPI](https://pypi.org/project/pinecone/)
6
26
-[Source on Github](https://github.com/pinecone-io/pinecone-python-client)
0 commit comments