DEV Community

Cover image for How to install AWS CLI on Windows
Oluwatobi
Oluwatobi

Posted on

How to install AWS CLI on Windows

The AWS CLI, or Command Line Interface, is a powerful tool for interacting with AWS services directly from your Windows machine. This guide will walk you through two primary methods for installing the latest AWS CLI version 2 on your Windows system.

Method 1: Using the Installer

1. Download the Installer:

1

  • Click on Windows Option

  • Click the Download link and save the installer file.

2. Run the Installer:

  • Locate the downloaded installer file.

2

  • Double-click the file to launch the installation process.

  • Follow the on-screen instructions, accepting the terms and conditions.

  • Choose the installation location (default is recommended).

  • Select the components you want to install (default is recommended).

  • Complete the installation.

3. Verify Installation:

Open a Command Prompt window.

Type aws --versionand press Enter.
If the installation was successful, you should see the installed AWS CLI version and other details.

3

Method 2: Using Pip (Python Package Manager)

1. Install Python (if not already installed):

  • Download and install Python from https://www.python.org/.
  • Ensure you add Python to your PATH environment variable during installation.

2. Install the AWS CLI with Pip:

  • Open a Command Prompt window.
  • Type pip install awscli --upgrade --user and press Enter.
  • This will download and install the latest AWS CLI version using Pip.

3. Verify Installation:

  • Open a Command Prompt window.
  • Type aws --version and press Enter.
  • If the installation was successful, you should see the installed AWS CLI version and other details.

Conclusion

Whether you're a seasoned developer or just starting with AWS, the AWS CLI offers a powerful and efficient way to manage your resources. By following these steps and exploring the official documentation, you can unlock the full potential of this versatile tool and streamline your interactions with the AWS cloud platform.

Top comments (0)