Skip to content

Latest commit

 

History

History
58 lines (40 loc) · 1.69 KB

File metadata and controls

58 lines (40 loc) · 1.69 KB

Install Command Code GUI

One-command installation

macOS or Linux:

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

Windows PowerShell:

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

What the installers do

  1. Detect the operating system and supported CPU architecture.
  2. Read the newest release from CommandCodeAI/gui.
  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.

Preview builds are not yet production-signed and notarized for public distribution. On macOS, the script asks before removing quarantine from Command Code only and applying a local ad-hoc signature. It does not disable Gatekeeper. On Windows, the script asks before opening an unsigned but SHA-256-verified installer. These temporary prompts disappear when production signing is enabled.

The source is public:

Install a specific version

macOS or Linux:

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

Windows PowerShell:

$env:COMMANDCODE_VERSION="0.1.0"; irm https://raw.githubusercontent.com/CommandCodeAI/gui/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.