Installation
Install OpenWalrus on macOS or Linux with one command, or build from source with Cargo.
Quick install
The fastest way to install OpenWalrus:
curl -sSL https://openwalrus.xyz/install | shThis downloads the latest prebuilt binary for your platform (macOS or Linux, Intel or ARM).
Install with Cargo
If you have Rust installed, you can build from source:
cargo install openwalrusWith CUDA support
For NVIDIA GPU acceleration:
cargo install openwalrus --features local,cudaWith Metal support
For Apple Silicon GPU acceleration:
cargo install openwalrus --features local,metalFeature flags
| Flag | Description |
|---|---|
local | Enable local LLM inference via mistralrs |
cuda | NVIDIA GPU acceleration (requires CUDA toolkit) |
metal | Apple Silicon GPU acceleration |
Verify installation
walrus --versionWhat's next
After installing, follow the quickstart guide to run your first agent. See configuration for customizing your setup.