Skip to content

Installation

Terminal window
brew install sentrux/tap/sentrux
Terminal window
curl -fsSL https://raw.githubusercontent.com/sentrux/sentrux/main/install.sh | sh

This downloads the latest release binary to /usr/local/bin/sentrux.

Download from Releases, or:

Terminal window
curl -L -o sentrux.exe https://github.com/sentrux/sentrux/releases/latest/download/sentrux-windows-x86_64.exe
Terminal window
git clone https://github.com/sentrux/sentrux.git
cd sentrux && cargo build --release

The binary will be at target/release/sentrux.

Terminal window
sentrux --version
# sentrux 0.5.7

sentrux automatically tries multiple GPU backends. If the app won’t start:

Terminal window
WGPU_BACKEND=vulkan sentrux # force Vulkan
WGPU_BACKEND=gl sentrux # force OpenGL
Terminal window
# Homebrew
brew update && brew upgrade sentrux
# Linux — re-run the install script
curl -fsSL https://raw.githubusercontent.com/sentrux/sentrux/main/install.sh | sh