Getting Started
Getting Started
Installation
From precompiled binaries
Get the latest release on GitHub: Releases · digiogithub/pando and download the binary for your operating system.
Specific installers for each platform (Windows, macOS, Linux) will also be available in the future.
With Go
If you have Go installed (1.21 or higher):
go install github.com/digiogithub/pando@latestBuilding from source
git clone https://github.com/digiogithub/pando.git
cd pando
cd web-ui && bun install && bun run build:embedded && cd ..
go build -o pando
./pandoQuick start
Once installed, start Pando with:
pandoThis opens the interactive TUI in your terminal.
Start options
# Start in a specific directory
pando -c /path/to/project
# Non-interactive mode (single query)
pando -p "Explain the use of context in Go"
# JSON format response
pando -p "Explain the use of context in Go" -f json
# Enable debug
pando -d