Last Updated: February 21, 2026
brew tap nindroida/pluginator
brew install pluginatorscoop bucket add pluginator https://github.com/NindroidA/scoop-pluginator
scoop install pluginator# Download the .deb from the latest release
curl -LO https://github.com/NindroidA/pluginator/releases/latest/download/pluginator-linux-x64.deb
# Install
sudo dpkg -i pluginator-linux-x64.debnpm install -g pluginatorbun install -g pluginatorAll downloads are available at: https://github.com/NindroidA/pluginator/releases/latest
| Platform | File | Notes |
|---|---|---|
| macOS (Apple Silicon) | .pkg |
Double-click to install to /usr/local/bin/ |
| macOS (Intel) | .pkg |
Double-click to install to /usr/local/bin/ |
| Windows | -setup.exe |
Installer with PATH setup and uninstaller |
| Linux (Debian/Ubuntu) | .deb |
Install with sudo dpkg -i |
| Platform | Architecture | Filename |
|---|---|---|
| macOS | Apple Silicon (M1/M2/M3) | pluginator-{version}-darwin-arm64.tar.gz |
| macOS | Intel | pluginator-{version}-darwin-x64.tar.gz |
| Linux | x64 | pluginator-{version}-linux-x64.tar.gz |
| Linux | ARM64 | pluginator-{version}-linux-arm64.tar.gz |
| Windows | x64 | pluginator-{version}-windows-x64.zip |
# Download (replace version and platform)
curl -LO https://github.com/NindroidA/pluginator/releases/latest/download/pluginator-2.3.0-linux-x64.tar.gz
# Extract
tar -xzf pluginator-2.3.0-linux-x64.tar.gz
# Move to PATH
sudo mv pluginator-* /usr/local/bin/pluginator
# Verify
pluginator --version- Download the
-setup.exeinstaller and run it, or: - Download
pluginator-{version}-windows-x64.zip - Extract to a folder (e.g.,
C:\Program Files\Pluginator) - Add the folder to your PATH
- Open a new terminal and run
pluginator --version
pluginator --versionExpected output:
pluginator v2.3.0
- npm/Bun install: Bun v1.1.0+ or Node.js 18+
- Binary install: No runtime requirements (standalone)
- OS: macOS 11+, Windows 10+, Linux (glibc 2.17+)
- Architecture: x64 or ARM64
- Terminal: 140 columns x 40 rows minimum
- Network: Internet connection for update checks
See AUTO_UPDATER.md for update instructions.
Quick reference:
| Install Method | Update Command |
|---|---|
| npm | npm update -g pluginator |
| Bun | bun update -g pluginator |
| Homebrew | brew upgrade pluginator |
| Scoop | scoop update pluginator |
| .deb | Download new .deb from releases |
| Binary | Re-run install script or download new release |
npm uninstall -g pluginatorbun remove -g pluginatorbrew uninstall pluginatorscoop uninstall pluginatorsudo dpkg -r pluginatorsudo rm /usr/local/bin/pluginatorUser data at ~/.pluginator/ is preserved by default during uninstall. To also remove it:
# Via the CLI (recommended)
pluginator uninstall --remove-data
# Or manually
rm -rf ~/.pluginatorEnsure the install location is in your PATH:
# Check if pluginator is in PATH
which pluginator
# For npm global installs, ensure npm bin is in PATH
export PATH="$PATH:$(npm bin -g)"For system-wide installs, use sudo:
sudo npm install -g pluginatorOr install to user directory:
npm install -g pluginator --prefix ~/.local# Re-add the tap
brew tap nindroida/pluginator
# Update Homebrew
brew updatemacOS may quarantine downloaded binaries:
# Remove quarantine attribute
xattr -d com.apple.quarantine /usr/local/bin/pluginatorThe binary requires glibc 2.17+. Check your version:
ldd --versionIf your glibc is older, use the npm/Bun installation method instead.