sbomlyze Package Repository

A fast, reliable SBOM diff and analysis tool.

Debian / Ubuntu (apt)

# Add repository
echo "deb [trusted=yes] https://rezmoss.github.io/sbomlyze/deb stable main" | sudo tee /etc/apt/sources.list.d/sbomlyze.list

# Install
sudo apt update
sudo apt install sbomlyze

RHEL / Fedora / CentOS (dnf/yum)

# Add repository
sudo tee /etc/yum.repos.d/sbomlyze.repo << REPO
[sbomlyze]
name=sbomlyze
baseurl=https://rezmoss.github.io/sbomlyze/rpm/packages
enabled=1
gpgcheck=0
REPO

# Install
sudo dnf install sbomlyze

Alpine (apk)

# Download and install directly
wget https://github.com/rezmoss/sbomlyze/releases/latest/download/sbomlyze_VERSION_linux_amd64.apk
sudo apk add --allow-untrusted sbomlyze_VERSION_linux_amd64.apk

Note: Alpine repository requires signed packages. Use direct download for now.

Other Installation Methods

# Install script (recommended)
curl -sSfL https://raw.githubusercontent.com/rezmoss/sbomlyze/main/install.sh | sh

# Go install
go install github.com/rezmoss/sbomlyze/cmd/sbomlyze@latest

See GitHub repository for more information.