Installation¶
Requirements¶
| Requirement | Minimum Version |
|---|---|
| Python | 3.9+ |
| pip | 21.0+ |
| Operating System | Linux, macOS, Windows |
Install via pip¶
With optional dependencies¶
# PostgreSQL adapter
pip install cloudsync-sdk[postgres]
# Redis adapter
pip install cloudsync-sdk[redis]
# gRPC transport
pip install cloudsync-sdk[grpc]
# All extras
pip install cloudsync-sdk[all]
Install from source¶
Verify installation¶
Docker¶
Official Docker images are published to Docker Hub:
docker pull cloudsync/sdk:3.4.2
docker run --rm cloudsync/sdk:3.4.2 python -c "import cloudsync; print(cloudsync.__version__)"
Platform-Specific Notes¶
On Apple Silicon (M1/M2/M3), the native ARM wheel is used automatically. No Rosetta required.
Manylinux2014 wheels are provided for x86_64 and aarch64.
Python 3.8 End of Life
Support for Python 3.8 was dropped in CloudSync SDK v3.3.0. Please upgrade to Python 3.9 or later.
Next: Quick Start →