AWS CLI Installation
You must run the following commands even if you already have AWS CLI installed. Otherwise, some modules (example: colorama) will not be installed.
To install AWS CLI, run the following commands in the command prompt:
- Run to install AWS CLI
pip install awscli --ignore-installed six
- Run
aws help
to ensure AWS was installed properly - Run
aws configure
and enter the following details:
- AWS Access Key ID
- AWS Secret Access Key
- Default region name
- Default output format (Optional)
This creates an AWS directory with the config and credential details.
Updated 8 months ago