Skip to content

Instantly share code, notes, and snippets.

@percybolmer
Created March 21, 2022 18:56
Show Gist options
  • Save percybolmer/5006f1574b13e982b505192961a0f7cc to your computer and use it in GitHub Desktop.
Save percybolmer/5006f1574b13e982b505192961a0f7cc to your computer and use it in GitHub Desktop.
Install AWS SAM
// 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