-
-
Save r3xakead0/2dff0fcc3b0d7d2ed2de59940f942ffa 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
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