-
Notifications
You must be signed in to change notification settings - Fork 28
Install from binaries
Binaries for Mintlayer can be downloaded from the following location:
https://www.mintlayer.org/download/
Before downloading, it's essential to choose the correct options for your system. Use the filters on the download page to narrow your selection:
- Linux: For Linux-based systems.
- Darwin (Mac): For macOS systems.
- Windows: For Windows-based systems.
- GUI: Graphical User Interface for most users.
- CLI: Command Line Interface for developers or advanced users.
- aarch64: For 64-bit ARM systems (e.g., ARM-based Linux, Apple M1 and newer).
- x86_64: For 64-bit Intel/AMD systems (e.g., Linux, Windows, Intel-based Mac).
- TAR.GZ: Archive format for Linux systems.
- DEB: Debian package for Linux systems.
- RPM: Red Hat package for Linux systems.
- DMG: Disk image format for macOS systems.
- ZIP: Archive format for macOS and Windows systems.
- EXE: Executable format for Windows systems.
- Navigate to the download page.
- Use the filters to select your Operating System, GUI or CLI, and Package Type.
- Locate the appropriate architecture and click on the "Download" link.
- Copy the SHA256 hash provided for the file to verify integrity.
Verifying the checksum ensures that the downloaded file is intact, unaltered, and free of corruption or tampering, confirming both its authenticity and integrity for safe and accurate usage.
-
Open a terminal.
-
Navigate to the directory where you downloaded the binary.
-
Use the
shasum
command to generate a checksum:shasum -a 256 [downloaded_file_name]
-
Compare the output with the provided SHA256 checksum displayed on the download page. They should match.
-
Open PowerShell.
-
Navigate to the directory where you downloaded the binary.
-
Use the
Get-FileHash
command to generate a checksum:Get-FileHash -Algorithm SHA256 [downloaded_file_name]
-
Compare the output with the provided SHA256 checksum displayed on the download page. They should match.
By verifying the checksum, you ensure the integrity and authenticity of the downloaded binary.