Skip to content

Instantly share code, notes, and snippets.

@JGalego
Last active June 27, 2024 10:46
Show Gist options
  • Save JGalego/12eef4df9d82635e91bcb5c2ccef514d to your computer and use it in GitHub Desktop.
Save JGalego/12eef4df9d82635e91bcb5c2ccef514d to your computer and use it in GitHub Desktop.
Install AWS SAM
# Install
# https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/install-sam-cli.html
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
# Clean
rm aws-sam-cli-linux-x86_64.zip
rm -rf sam-installation
# Test
which sam
sam --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment