You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
asdf plugin add perl
# or
asdf plugin add grex https://github.com/ouest/asdf-perl.git
Perl:
# Show all installable stable versions
asdf list-all perl
# Install specific version
asdf install perl latest
# Set a version globally (on your ~/.tool-versions file)
asdf global perl latest
# Now Perl commands are available
perl --help
Check asdf readme for more instructions on how to install & manage versions.
Show all installable version of Perl
Set the ASDF_PERL_DEVEL environment variable to list development versions of Perl in addition to stable versions.
env ASDF_PERL_DEVEL=1 asdf list-all perl
Set Perl build args
Set the ASDF_PERL_BUILD_ARGS environment variable to set build arguments for Perl installation.
asdf-perl can automatically install a set of default Perl modules right after installed Perl.
To enable this feature, provide a $HOME/.default-perl-modules file that lists one module Per line, for example:
App::Ack
CGI
HTML::Template
You can specify a non-default location of this file by setting the ASDF_PERL_DEFAULT_PACKAGES_FILE environment variable.