Updated Edit
On this page
Download and install Claude Code version binaries from GCS.
#claudewheel.install
#claudewheel.install
Download, verify, and install Claude Code binaries from Google Cloud Storage.
#_detect_platform
python
def _detect_platform() -> strDetect the current platform string matching GCS manifest keys.
#fetch_manifest
python
def fetch_manifest(version: str) -> dictFetch the version manifest from GCS. Returns the parsed JSON dict.
#install_version
python
def install_version(version: str, progress_callback=None) -> PathDownload and install a Claude Code version binary.
Args:
version: The version string (e.g. "2.1.120")progress_callback: Optional callable(bytes_downloaded, total_bytes)
Returns:
- Path to the installed binary.
Raises:
- OSError on any failure (network, checksum, disk).