Installers

Elide provides native installers for Windows and macOS Apple Silicon. Use the one-line install script or GitHub Releases for macOS Intel until CDN installer links are available. Windows MSI installers are Authenticode-signed. Separate GPG .asc signatures may also be available for some builds (see verification details below). The links below always point to the latest nightly build.

macOS

macOS Intel

The latest nightly CDN exposes Apple Silicon PKG and DMG installers. For Intel macOS artifacts, use GitHub Releases until direct CDN links are available.

Architecture Format Download Checksum
arm64 (Apple Silicon) PKG elide-installer.macos-arm64.pkg sha256
amd64 (Intel) PKG GitHub Releases Release asset
arm64 (Apple Silicon) DMG elide-installer.macos-arm64.dmg sha256
amd64 (Intel) DMG GitHub Releases Release asset

Windows

Architecture Format Download Checksum
amd64 MSI elide-installer.windows-amd64.msi sha256

Verifying downloads

All installer downloads include a SHA-256 checksum file. Use the platform-appropriate command to verify:

Windows (using PowerShell):

powershell
# Download the installer and its checksum
Invoke-WebRequest -Uri "https://elide.zip/artifacts/nightly/latest/elide-installer.windows-amd64.msi" -OutFile "elide-installer.windows-amd64.msi"
Invoke-WebRequest -Uri "https://elide.zip/artifacts/nightly/latest/elide-installer.windows-amd64.msi.sha256" -OutFile "elide-installer.windows-amd64.msi.sha256"

# Verify the checksum
$expected = (Get-Content "elide-installer.windows-amd64.msi.sha256").Split(" ")[0]
$actual = (Get-FileHash "elide-installer.windows-amd64.msi" -Algorithm SHA256).Hash.ToLower()
if ($expected -eq $actual) { Write-Host "OK" } else { Write-Host "MISMATCH" }
Linux / macOS (using sha256sum or shasum):

bash
# Linux
 sha256sum -c elide-installer.macos-arm64.pkg.sha256

# macOS
 shasum -a 256 -c elide-installer.macos-arm64.pkg.sha256

GPG signatures (.asc files) may also be available for some builds:

bash
# Import the Elide GPG key
 curl -fsSL https://keys.elide.dev/gpg.key | gpg --import

# Download and verify the signature
 curl -LO https://elide.zip/artifacts/nightly/latest/elide-installer.windows-amd64.msi.asc
 gpg --verify elide-installer.windows-amd64.msi.asc elide-installer.windows-amd64.msi
Note

All download links above default to the latest nightly build. Installer downloads are also available via GitHub Releases.