Installers

Elide provides native installers for macOS and Windows. 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

Coming soon

macOS PKG and DMG installers are not yet signed or notarized. Signed macOS installers will be available in a future release.

Architecture Format Download Checksum
arm64 (Apple Silicon) PKG Coming soon
amd64 (Intel) PKG Coming soon
arm64 (Apple Silicon) DMG Coming soon
amd64 (Intel) DMG Coming soon

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.windows-amd64.msi.sha256

# macOS
 shasum -a 256 -c elide-installer.windows-amd64.msi.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.