Install GhostRateIQ SDK
Set up the Python SDK and API client in under 5 minutes. Requires Python 3.9+.
pip
$pip install ghostrateiq Requires Python 3.9 or later. Installs core SDK and CLI.
ghostrateiq --version to verify.
pipx
$pipx install ghostrateiq Isolated installation recommended for CLI-only use.
ghostrateiq --version to verify.
Docker
$docker pull ghostrateiq/sdk:latest Pre-built image includes Python 3.11, all dependencies.
docker run ghostrateiq/sdk:latest version to verify.
Source
$git clone https://github.com/ghostrateiq/sdk && cd sdk && pip install -e . For development, edge features, or air-gapped deployment.
python -c "import ghostrateiq; print(ghostrateiq.__version__)" to verify.
Quick Verify
python
```python
import ghostrateiq
client = ghostrateiq.Client(api_key="your_key_here")
print(client.health_check()) # Expected: {"status": "ok", "version": "x.x.x"}
```