Docs Menu
Install Zilliz Cloud SDK
This topic describes how to install SDK for Zilliz Cloud.
The current version of Zilliz Cloud provides SDKs in Python and Java.
Prerequisites
- Python 3.7.1 or later
- Google Protobuf 3.20.0 (install with
pip3 install protobuf==3.20.0
)
Install PyMilvus via pip
PyMilvus is available in the Python Package Index.
$ python3 -m pip install pymilvus==
Verify installation
If PyMilvus is correctly installed, no exception will be raised when you run the following command.
$ python3 -c "from pymilvus import Collection"