# Install Quorum ## Quick install (npm) ```bash npm i -g @xudesheng/quorum quorum --version ``` ## Homebrew (macOS/Linux) ```bash brew tap xudesheng/tap brew install quorum quorum --version ``` ## winget (Windows) ```powershell winget install --id Desheng.Quorum -e quorum --version ``` Notes: - `winget` availability can lag behind release publication due to upstream index sync/review. ## bunx (no global install) ```bash bunx @xudesheng/quorum --version ``` ## GitHub Release binaries Use the latest release from: https://github.com/xudesheng/quorum/releases/latest Assets: - `quorum-v-windows-x64.zip` - `quorum-v-linux-x64-musl.tar.gz` - `quorum-v-macos-universal.zip` Also download checksum file: - `quorum-v-SHA256SUMS.txt` ## Verify checksum (recommended) Linux/macOS: ```bash sha256sum -c quorum-v-SHA256SUMS.txt ``` Windows (PowerShell): ```powershell Get-FileHash .\quorum-v-windows-x64.zip -Algorithm SHA256 ``` Compare the output hash with the corresponding line in `quorum-v-SHA256SUMS.txt`. ## Extract and run After extraction, add `quorum` (`quorum.exe` on Windows) to `PATH` and run: ```bash quorum --version ```