jwilliams
jwilliams

Reputation: 21

How can I upgrade AWS SAM to a certain version?

I'm trying to upgrade SAM CLI, version 1.18.2 to 1.22.0 on Ubuntu 20.04. I used brew command:

~brew upgrade [email protected]

but didn't work. Showed the next message:

Error: No available formula or cask with the name "[email protected]".

Also I'm trying to find a downloadable to install a certain version. Thanks for your help!

Upvotes: 2

Views: 1910

Answers (1)

kai950415
kai950415

Reputation: 11

https://github.com/aws/aws-sam-cli/issues/1767

For anyone in the future, use pip.

pip3 install --user 'aws-sam-cli==1.12.0'

Upvotes: 1

Related Questions