Latest Release Artifacts
Note: There are no official releases yet.
The artifacts available on the Release page are for testing the build and release workflows.
They should be considered as unstable nightly builds from the main branch.
Releases marked -M1
, -M2
, -RC1
etc. are preparations for official releases according to the Eclipse Release process.
Go to the Eclipse Leda Releases page and download the release archive for the respective machine. The release archives container the disk image and the respective Linux kernel:
Machine | Filename | Description |
---|---|---|
QEMU x86_64 | eclipse-leda-qemu-x86_64.tar.xz | For running QEMU x86 64-Bit |
QEMU ARM 64 | eclipse-leda-qemu-arm64.tar.xz | For running QEMU ARM 64-Bit |
Raspberry Pi 4 | eclipse-leda-raspberrypi.tar.xz | For running on Raspberry Pi 4 (SD-Card Image) |
Using GitHub CLI tool
To download all files of the latest release using the GitHub CLI:
-
Install GitHub CLI, e.g. for Ubuntu:
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null sudo apt update sudo apt install gh
-
Authenticate to GitHub:
gh auth login
-
Download Leda latest release:
On Linux:
mkdir leda && cd leda gh release download \ --pattern '*.zip' \ --pattern 'eclipse-leda-*' \ --repo eclipse-leda/leda-distro
On Windows:
gh release download --pattern "*.zip" --pattern "eclipse-leda-*" --repo eclipse-leda/leda-distro
-
Continue with Running Eclipse Leda on QEMU or Running Eclipse Leda on Raspberry Pi 4