gum a utility manager for Go.
You can install gum with a single command:
curl -fsSL https://raw.githubusercontent.com/baj-/gum/main/scripts/install.sh | bashAfter installation, add gum to your PATH by adding this line to your shell profile (.bashrc, .zshrc, etc.):
export PATH="$HOME/.gum/bin:$PATH"You can install Go versions in several ways:
# Install a specific version (major.minor.patch)
gum install 1.24.2
# Install the latest patch version for a major.minor release
gum install 1.24 # Will install the latest 1.24.x version
# Install with or without the "go" prefix
gum install go1.24
gum install 1.24When you specify only a major.minor version (like 1.24), gum will automatically find and install the latest patch version available for that release.
gum use 1.24.2or
gum useThe version specified in your go.mod will be set as active.
gum uninstall 1.24.2gum list