curl -fsSL https://mcplambda.io/mcpl/install.sh | shThe installer auto-detects your OS and architecture, fetches the latest release from GitHub, verifies the SHA-256 checksum, and places mcpl in /usr/local/bin (or ~/.local/bin if /usr/local/bin is not writable). Set MCPL_SKIP_CHECKSUM=1 to bypass checksum verification (not recommended).
To pin a specific version:
MCPL_VERSION=1.2.3 curl -fsSL https://mcplambda.io/mcpl/install.sh | shirm https://mcplambda.io/mcpl/install.ps1 | iexThe installer downloads the correct .zip for your architecture, verifies the checksum, extracts mcpl.exe to %LOCALAPPDATA%\mcpl, and adds it to your user PATH. Set $env:MCPL_SKIP_CHECKSUM = '1' to bypass checksum verification (not recommended).
To pin a specific version:
$env:MCPL_VERSION = '1.2.3'; irm https://mcplambda.io/mcpl/install.ps1 | iex