Skip to content

Instantly share code, notes, and snippets.

@r3xakead0
Forked from singledigit/Install-AWS-SAM.sh
Last active February 6, 2024 15:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r3xakead0/2dff0fcc3b0d7d2ed2de59940f942ffa to your computer and use it in GitHub Desktop.
Save r3xakead0/2dff0fcc3b0d7d2ed2de59940f942ffa to your computer and use it in GitHub Desktop.
Install AWS SAM on Linux using the new Linux installer
sudo apt update
sudo apt install curl unzip -y
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
sam --version
rm -rf sam-installation
rm -rf aws-sam-cli-linux-x86_64.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment