Skip to content

Latest commit

 

History

History
58 lines (40 loc) · 1.72 KB

File metadata and controls

58 lines (40 loc) · 1.72 KB

Install Command Code GUI

One-command installation

macOS or Linux:

curl -fsSL https://raw.githubusercontent.com/CommandCodeAI/desktop/main/install.sh | bash

Windows PowerShell:

irm https://raw.githubusercontent.com/CommandCodeAI/desktop/main/install.ps1 | iex

What the installers do

  1. Detect the operating system and supported CPU architecture.
  2. Read the newest release from CommandCodeAI/desktop.
  3. Select the matching .dmg, .deb, or .exe.
  4. Verify the SHA-256 digest published by GitHub.
  5. Install and open Command Code.

The scripts fail without installing anything when a matching verified artifact is unavailable.

macOS releases are signed with an Apple Developer ID and notarized. The script verifies the signature and Gatekeeper assessment and stops without installing if either check fails - it never removes quarantine or modifies a build. On Windows, the script asks before opening an unsigned but SHA-256-verified installer; that temporary prompt disappears when Windows production signing is enabled.

The source is public:

Install a specific version

macOS or Linux:

curl -fsSL https://raw.githubusercontent.com/CommandCodeAI/desktop/main/install.sh | COMMANDCODE_VERSION=0.1.3 bash

Windows PowerShell:

$env:COMMANDCODE_VERSION="0.1.3"; irm https://raw.githubusercontent.com/CommandCodeAI/desktop/main/install.ps1 | iex

Getting help

If installation fails, open a bug report with the operating system, architecture, downloaded filename, and exact error. Never include tokens, API keys, private project files, or .env contents.