Choose your preferred installation method below.
The easiest way to install and update Duso:
# First time
brew tap duso-org/homebrew-duso
brew install duso
# Later: update
brew upgrade duso
Download the binary for your system from GitHub Releases.
duso-macos-intel.tar.gzduso-macos-silicon.tar.gz# Extract
tar xzf duso-macos-*.tar.gz
cd duso-macos-*
# Install to /usr/local/bin
./duso -install
duso-linux-amd64.tar.gzduso-linux-arm64.tar.gz# Extract
tar xzf duso-linux-*.tar.gz
cd duso-linux-*
# Install to /usr/local/bin
./duso -install
Download duso-windows-amd64.zip from GitHub Releases.
# Extract
Expand-Archive duso-windows-amd64.zip
cd duso-windows-amd64
# Install to Program Files
.\duso -install
The binary will be available as duso from any command prompt or PowerShell window.
You'll need Go 1.21 or later installed. Then:
git clone https://github.com/duso-org/duso.git
cd duso
./build.sh
# Make it available everywhere
sudo ln -s $(pwd)/bin/duso /usr/local/bin/duso
duso -version
You should see the version number. If you get "command not found", make sure /usr/local/bin is in your PATH:
echo $PATH
If /usr/local/bin is missing, add this to your shell profile (~/.zshrc, ~/.bashrc, etc.):
export PATH="/usr/local/bin:$PATH"
Then restart your terminal.
# Homebrew
brew uninstall duso
brew untap duso-org/homebrew-duso
# Manual installation
rm /usr/local/bin/duso
Apache License 2.0 (see LICENSE file for details) © 2026 Ludonode LLC