Created
March 21, 2022 18:56
-
-
Save percybolmer/5006f1574b13e982b505192961a0f7cc to your computer and use it in GitHub Desktop.
Install AWS SAM
This file contains hidden or 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
// Wget to Fetch ZIP | |
wget https://github.com/aws/aws-sam-cli/releases/latest/download/aws-sam-cli-linux-x86_64.zip | |
// Unzip into a folder named sam-installation | |
unzip aws-sam-cli-linux-x86_64.zip -d sam-installation | |
// Execute installation script | |
sudo ./sam-installation/install | |
// Cleanup | |
rm -rf aws-sam-cli-linux-x86_64.zip | |
rm -rf sam-installation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment