Skip to content

Installation

Task guide

Install the stable Glade binary on macOS or Linux, verify its version, then continue inside a Salesforce DX project.

Verified stable release: v0.2.14

Supported release archives

OSCPUStatus
macOSarm64supported release archive
macOSamd64supported release archive
Linuxamd64supported release archive
Linuxarm64supported release archive
Windowsamd64/arm64no native release archive; source builds and WSL are not verified by this walkthrough

Install and verify

bash
curl -fsSL https://glade.sh/install.sh | sh
glade version

The script installs the current stable release to ~/.local/bin by default. Expected: glade version prints v0.2.14. If the shell cannot find glade, repair the current shell with:

bash
export PATH="$HOME/.local/bin:$PATH"
glade version

Add the PATH line to your shell configuration to retain it in new terminals.

Override the destination or pin a release when needed:

bash
curl -fsSL https://glade.sh/install.sh | env GLADE_INSTALL_DIR=/usr/local/bin sh
curl -fsSL https://glade.sh/install.sh | env GLADE_VERSION=vX.Y.Z sh

Replace vX.Y.Z with the exact published release you reviewed. CI examples in this guide pin their tested release directly.

Update

Preview the installer command before allowing self-replacement:

bash
glade update --dry-run
GLADE_UPDATE_ALLOW_SHELL=1 glade update
glade version

glade update updates the directory that contains the current glade binary. The environment guard keeps self-replacement explicit.

Continue in a project

glade doctor is project-aware. Do not use it as the binary installation check. Continue with the first local check, which enters or initializes a Salesforce DX project before running:

bash
glade doctor --project .

Other installation paths

The security and release trust guide is the canonical manual verification path. It resolves the version and archive from the same published manifest used by the installer and this page.

Its fail-closed release check verifies the CycloneDX attestation:

bash
gh attestation verify "$GLADE_ARCHIVE" -R glade-sh/glade \
  --predicate-type https://cyclonedx.org/bom

Glade is an independent project and is not affiliated with, sponsored by, or endorsed by Salesforce. Salesforce and Apex are trademarks of Salesforce, Inc. · Maintainer · Security · Releases · Apache-2.0