Install Toby
You can install Toby from a release binary or from source.
Option 1: Release binary (recommended)
- Open the Toby releases page.
- Download the latest binary for your platform (for example,
toby-darwin-arm64on Apple Silicon Macs). - Move it onto your PATH and make it executable:
chmod +x toby-darwin-arm64
sudo mv toby-darwin-arm64 /usr/local/bin/toby
- Verify the install:
toby --help
Option 2: Install from source
- Clone the repository:
git clone https://github.com/kshehadeh/toby.git
cd toby
- Install dependencies and build:
bun install
bun run build
- Run Toby:
bun run dev -- --help
When developing from source, prefix commands with bun run dev -- (for example, bun run dev -- chat).