Skip to main content

Install Toby

You can install Toby from a release binary or from source.

  1. Open the Toby releases page.
  2. Download the latest binary for your platform (for example, toby-darwin-arm64 on Apple Silicon Macs).
  3. Move it onto your PATH and make it executable:
chmod +x toby-darwin-arm64
sudo mv toby-darwin-arm64 /usr/local/bin/toby
  1. Verify the install:
toby --help

Option 2: Install from source

  1. Clone the repository:
git clone https://github.com/kshehadeh/toby.git
cd toby
  1. Install dependencies and build:
bun install
bun run build
  1. Run Toby:
bun run dev -- --help

When developing from source, prefix commands with bun run dev -- (for example, bun run dev -- chat).

Next steps