Install
Get Lyra from the download page, which suggests the right file for your system. Every file is also on GitHub Releases.
| Chip | File |
|---|---|
| Apple silicon (M-series) | Lyra-<version>-arm64.dmg |
| Intel | Lyra-<version>-x64.dmg |
Not sure? Apple menu → About This Mac, and look at the Chip line.
-
Open the
.dmgand drag Lyra into Applications. -
The first launch says the developer cannot be verified. Go to System Settings → Privacy & Security, scroll down to Lyra and click Open Anyway.
-
Or clear the quarantine flag from Terminal, which does the same thing:
终端窗口 xattr -dr com.apple.quarantine /Applications/Lyra.app
| Architecture | File |
|---|---|
| x64 (most PCs) | Lyra-<version>-x64.exe |
| Arm (Snapdragon laptops, Surface Pro X) | Lyra-<version>-arm64.exe |
Not sure? Settings → System → About, and look at System type.
- Run the installer.
- When SmartScreen says “Windows protected your PC”, click More info, then Run anyway.
- Finish the wizard. You can change the install folder, but don’t pick the folder the installer was downloaded into.
| Architecture | AppImage | deb |
|---|---|---|
| x64 | Lyra-<version>-x86_64.AppImage |
Lyra-<version>-amd64.deb |
| arm64 | Lyra-<version>-arm64.AppImage |
Lyra-<version>-arm64.deb |
Not sure? Run uname -m: x86_64 means x64, aarch64 means arm64.
Pick one format:
-
AppImage needs no install and runs on most distributions. It needs FUSE 3, which Ubuntu 22.04 and later ship by default.
终端窗口 chmod +x Lyra-<version>-x86_64.AppImage./Lyra-<version>-x86_64.AppImage -
deb is for Debian, Ubuntu and their derivatives. It needs glibc 2.34 or newer (Ubuntu 22.04, Debian 12 and up).
终端窗口 sudo apt install ./Lyra-<version>-amd64.deb
| System | File | How to install |
|---|---|---|
| Android | Lyra-<version>-android.apk |
Open it. The first time, Android asks you to allow installs from unknown sources |
| iOS | Lyra-<version>-ios-unsigned.ipa |
Unsigned, so it won’t install as is. Sign it with Sideloadly, AltStore or Xcode, then install. A free Apple ID is enough |
Verify the download
Section titled “Verify the download”Every release includes SHA256SUMS, the SHA-256 of each file. Download it into the same folder as the installer, then:
shasum -a 256 -c SHA256SUMS --ignore-missing(Get-FileHash .\Lyra-<version>-x64.exe -Algorithm SHA256).Hash.ToLower()Compare the output with the line for the same file in SHA256SUMS.
sha256sum -c SHA256SUMS --ignore-missingOK after the file name means it matches. Check the phone files the same way on your computer.
Other files in a release
Section titled “Other files in a release”You usually won’t need these:
| File | What it’s for |
|---|---|
Lyra-<version>-arm64.zip, Lyra-<version>-x64.zip |
In-app updates on macOS |
Lyra-<version>.exe |
A combined x64 + arm64 Windows installer, twice the size |
SHA256SUMS |
Checksums for every file |