Saturday, June 5, 2021

Install AWS CLI on MAC OS | How to install AWS CLI on MAC OS


The AWS Command Line Interface (CLI) is a unified tool to manage your AWS services. With just one tool to download and configure, you can control multiple AWS services from the command line and automate them through scripts.


curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg"

sudo installer -pkg AWSCLIV2.pkg -target / 

aws --version

aws-cli/2.2.9 Python/3.9.5 Darwin/20.4.0 source/arm64 prompt/off

No comments:

Post a Comment

How to create Pull Request (PR) templates in Azure Repos? | Creating pull request template in Azure Repos

Azure Repos allows you to create Pull Request (PR) templates to standardize and streamline the PR process for your team. This ensures that a...