Install
Quick install (self-contained)
Section titled “Quick install (self-contained)”The recommended way to install owui is into a user-local directory. This does
not require sudo.
curl -fsSL https://raw.githubusercontent.com/christestet/owui-go/main/scripts/install.sh | shThe script installs to ~/.local/bin by default. If this directory is not in
your PATH, the script will provide instructions on how to add it.
On macOS (zsh), the installer also tries to set up shell completion
automatically. If your current shell session was already running during
install, reload your shell config once:
source ~/.zshrcGo install
Section titled “Go install”go install github.com/christestet/owui-go/cmd/owui@latestBuild from source
Section titled “Build from source”git clone https://github.com/christestet/owui-go.gitcd owui-gomake build# Binary is at ./bin/owuiUninstall
Section titled “Uninstall”To completely remove owui and its configuration:
curl -fsSL https://raw.githubusercontent.com/christestet/owui-go/main/scripts/uninstall.sh | shAlternatively, remove the files manually:
rm ~/.local/bin/owui
# Remove configurationrm -rf ~/.config/owui # Linuxrm -rf ~/Library/Application\ Support/owui # macOS