Skip to content

asdf Snippets

Terminal window
# List all available plugins
asdf plugin list all
# Install a plugin:
asdf plugin add name
# List all available versions for a package
asdf list all name
# List install packages with name
asdf list name
# Install a specific version of a package
asdf install packagename version
# Uninstall a specific version of a package
asdf uninstall packagename version
# Set global version for a package
asdf set -u packagename version
# Set global version for a package, for example ProtonGE, to the latest
asdf set -u protonge latest
# Example: Install Proton Glorious Eggroll (GE) with unofficial plugin
asdf plugin add protonge
# Or install a version from a tag (Eg.: GE-Proton8-25)
asdf install protonge latest
# and set protonge at latest version
asdf set -u protonge latest
# Update all plugins to latest commit on default branch
asdf plugin update --all
# See the current version used for a package
asdf current name