245 words
1 min read

Install AWS CLI on macOS

By · Solutions Architect · Docker Captain · IBM Champion
Cover image for the post 'Install AWS CLI on macOS'

This article is for those looking for a detailed and straightforward guide on installing AWS CLI on macOS.

The AWS CLI is a single tool for managing AWS services. With just one tool download, you can control many AWS services from the command line and automate them with scripts.

TIP

Architecture Context

AWS CLI is essential for scripting and automation workflows that exceed what the AWS Console provides. For infrastructure provisioning, Terraform or CloudFormation offer declarative alternatives with state management and drift detection. CLI is the right choice for ad-hoc operations, debugging, and scripting — while IaC tools should handle repeatable infrastructure deployments.

NOTE

We will be using the iTerm2 terminal emulator.

Download the AWS CLI installer using the command:

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

Install AWS CLI on macOS - Step 1

Let’s start the AWS CLI installation using the command:

Terminal window
sudo installer -pkg AWSCLIV2.pkg -target /

Install AWS CLI on macOS - Step 2

Specify the password for the account and press “Enter”.

Install AWS CLI on macOS - Step 3

Now you can see the location of the executable file with the command:

Terminal window
which aws

Install AWS CLI on macOS - Step 4

You can now view the installed version of AWS CLI using the command:

Terminal window
aws --version

Install AWS CLI on macOS - Step 5

Everything is ready to use the AWS CLI.

Install AWS CLI on macOS - Step 6

You can read more about how to configure AWS CLI in my guide Configure AWS CLI.


Vladimir Mikhalev

Docker Captain  ·  IBM Champion  ·  AWS Community Builder

The Verdict — production-tested analysis on YouTube.

The Verdict

Inconvenient truths about shipping in the AI era

Container security, platform engineering, and the agentic shift — tested in production, argued without the hype. The verdict reaches your inbox the moment there's one worth sending.

Related Posts

Same category
  1. 1
    Terraform MCP server GA: the Apply Gate your auditor will ask about
    DevOps & Cloud · HashiCorp's Terraform MCP server is GA and IBM Bob can write production IaC. ENABLE_TF_OPERATIONS separates a safe assistant from autonomous apply.
  2. 2
    Docker supply chain hardening — from Scout D to OpenSSF 7.8 on a 730K-pull image
    DevOps & Cloud · How I hardened a 1M-pull public Docker image from Scout grade D to OpenSSF Scorecard 7.8 — multi-stage build, cosign, SLSA provenance, non-root default.
  3. 3
    Cloudflare Web Analytics on Astro — Why Removing GA4 Unlocked Lighthouse 100
    DevOps & Cloud · How removing Google Analytics 4 from an Astro site unlocked Lighthouse 100, why Cloudflare Web Analytics replaced it, and what the tradeoffs actually cost.
  4. 4
    Platform Engineering — The Complete, Practical Guide to Building Internal Developer Platforms That Scale
    DevOps & Cloud · A practical guide to Platform Engineering — build internal developer platforms, golden paths, GitOps workflows, and scalable cloud foundations.

Random Posts

Random
  1. 1
    Install Gitea Using Docker Compose
    Self-Hosting · Learn how to install Gitea using Docker Compose and Traefik with free SSL from Let's Encrypt. Self-host your Git service with secure Git over SSH.
  2. 2
    Install and Configure DHCP Server on Windows Server 2012 R2
    SysAdmin & IT Pro · Step-by-step guide to install and configure a DHCP server on Windows Server 2012 R2. Learn to assign IPs, set exclusions, and reserve addresses with ease.
  3. 3
    Restore Windows Firewall Defaults
    SysAdmin & IT Pro · Learn how to restore Windows Firewall to its default settings using GUI, Command Prompt, or PowerShell. Step-by-step guide for Windows system admins.
  4. 4
    Install Minecraft on Windows
    SysAdmin & IT Pro · Step-by-step guide on how to install Minecraft Java Edition on Windows. Learn how to download, install, and launch Minecraft quickly and easily.
Install AWS CLI on macOS
https://heyvaldemar.com/install-aws-cli-on-macos/
Author
Vladimir Mikhalev
Published
2022-09-16
License
CC BY-NC-SA 4.0