Last active
September 15, 2024 14:51
-
-
Save singledigit/5f00ef69393b3b6f5dbfcf6cfada345e to your computer and use it in GitHub Desktop.
Install AWS SAM on Linux using the new Linux installer
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
curl -L https://github.com/aws/aws-sam-cli/releases/latest/download/aws-sam-cli-linux-x86_64.zip -o aws-sam-cli-linux-x86_64.zip | |
unzip aws-sam-cli-linux-x86_64.zip -d sam-installation | |
sudo ./sam-installation/install | |
where sam | |
sam --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For stock Amazon Linux - there's no
where
command, butwhich
works.