Pre-built binaries for the GPTCode CLI agent.
curl -sSL https://raw.githubusercontent.com/gptcode-cloud/cli-releases/main/install.sh | sh# Download the latest release
$version = (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/gptcode-cloud/cli-releases/main/LATEST").Content.Trim()
$url = "https://github.com/gptcode-cloud/cli-releases/releases/download/$version/gptcode_$($version.TrimStart('v'))_windows_amd64.zip"
Invoke-WebRequest -Uri $url -OutFile gptcode.zip
Expand-Archive -Path gptcode.zip -DestinationPath .- Go to the Releases page
- Download the appropriate archive for your OS/architecture
- Extract the binary
- Move it to a directory in your PATH
| OS | Architecture | Archive |
|---|---|---|
| Linux | x86_64 | gptcode_*_linux_amd64.tar.gz |
| Linux | ARM64 | gptcode_*_linux_arm64.tar.gz |
| macOS | Intel | gptcode_*_darwin_amd64.tar.gz |
| macOS | Apple Silicon | gptcode_*_darwin_arm64.tar.gz |
| Windows | x86_64 | gptcode_*_windows_amd64.zip |
gptcode --versionAfter installation, run:
gptcode setupThis will guide you through configuring your API keys and preferences.
See the main GPTCode repository for license information.