Skip to content

Installation

Install Pumbaa — a single binary with no dependencies.


curl -sSL https://raw.githubusercontent.com/lmtani/pumbaa/main/install.sh | bash

This script will:

  1. 🖥 Detect your OS and architecture
  2. ⬇ Download the appropriate binary from GitHub Releases
  3. 📦 Install it to /usr/local/bin/pumbaa
  4. ✅ Make it executable

Verify Installation

pumbaa --version

📦 Manual Download

If you prefer to install manually:

Step 1: Download from GitHub Releases

Go to Releases

Platform Architecture Asset
Linux x86_64 pumbaa_Linux_x86_64.tar.gz
Linux ARM64 pumbaa_Linux_arm64.tar.gz
macOS x86_64 pumbaa_Darwin_x86_64.tar.gz
macOS ARM64 pumbaa_Darwin_arm64.tar.gz

Step 2: Extract and Install

# Extract
tar -xzf pumbaa_*.tar.gz

# Install
chmod +x pumbaa
sudo mv pumbaa /usr/local/bin/

🐛 Troubleshooting

Permission Denied
chmod +x /path/to/pumbaa
Command Not Found

Add to your PATH:

export PATH=$PATH:/usr/local/bin

macOS Security Warning
xattr -d com.apple.quarantine /usr/local/bin/pumbaa

📚 Next Steps