Getting Started
Installation
devv ships as a single static binary — no runtime dependencies required.
macOS / Linux (recommended)
curl -fsSL https://devv.tools/install.sh | sh
This detects your OS and architecture automatically, downloads the correct binary, and installs to /usr/local/bin.
Custom install directory
DEVV_INSTALL_DIR=~/.local/bin curl -fsSL https://devv.tools/install.sh | sh
Homebrew
brew install devvtools/tap/devv
From source
Requires Bun installed:
git clone https://github.com/bytangle-hq/devv.tools
cd devv.tools/packages/cli
bun install
bun build src/index.ts --compile --outfile devv
sudo mv devv /usr/local/bin/
Verify installation
devv --version
# 0.1.0
Supported platforms
| Platform | Architecture | Binary |
|---|---|---|
| macOS | Apple Silicon (arm64) | devv-darwin-arm64 |
| macOS | Intel (x64) | devv-darwin-x64 |
| Linux | x64 | devv-linux-x64 |
| Linux | arm64 | devv-linux-arm64 |
Updating
Re-run the install script to update to the latest version:
curl -fsSL https://devv.tools/install.sh | sh
Or with Homebrew:
brew upgrade devv
Was this page helpful?