Skip to main content

Installation

Quick Install

curl -fsSL https://sh.umka.day | sh

This downloads the correct binary for your platform, verifies the SHA-256 checksum, and installs it to ~/.local/bin/umka.

Install a specific version

curl -fsSL https://sh.umka.day | sh -s -- 0.1.0

Custom install location

UMKA_INSTALL_DIR=/usr/local/bin curl -fsSL https://sh.umka.day | sh

PATH Setup

If ~/.local/bin is not already in your PATH, add it to your shell config:

bash (~/.bashrc)
export PATH="$HOME/.local/bin:$PATH"
zsh (~/.zshrc)
export PATH="$HOME/.local/bin:$PATH"
fish (~/.config/fish/config.fish)
fish_add_path ~/.local/bin

Verify

umka --help

Update

umka cli update

See Update & Uninstall for more details.