Last active
February 17, 2021 19:25
-
-
Save LozanoMatheus/68291aab6922dea9f698de7aa3bfde4b to your computer and use it in GitHub Desktop.
How to use asdf to manage multiple runtimes and switch between versions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Add the awscli plugin | |
asdf plugin add awscli | |
## List the awscli version | |
asdf list-all awscli | |
## Install awscli version 2.1.27 | |
asdf install awscli 2.1.27 | |
## or to install the latest of awscli | |
asdf install awscli latest | |
## Set the awscli version in the local scope (current directory) | |
asdf local awscli 2.1.27 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment