Installtion of AWS CLI tools

Added the necessary installation links for Windows and Linux.
This commit is contained in:
Amey Parundekar 2018-06-25 14:00:09 +05:30 committed by GitHub
parent 3489ea317e
commit 6c88d6ab91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 9 deletions

View File

@ -62,20 +62,27 @@ wget -O kubectl https://storage.googleapis.com/kubernetes-release/release/$(curl
chmod +x ./kubectl chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl sudo mv ./kubectl /usr/local/bin/kubectl
``` ```
# Installing AWS CLI Tools
https://aws.amazon.com/cli/
## Installing AWS CLI Tools On MacOS, Windows and Linux OS:
The officially supported way of installing the tool is with `pip`:
```pip install awscli
```
##### _OR use these alternative methods for MacOS and Windows:_
### MacOS ### MacOS
The officially supported way of installing the tool is with `pip`: You can grab the tool with homebrew, although this is not officially supported by AWS.
```bash
pip install awscli
```
You can also grab the tool with homebrew, although this is not officially supported by AWS.
```bash ```bash
brew update && brew install awscli brew update && brew install awscli
``` ```
### Windows
You can download the MSI installer from this page and follow the steps through the installer which requires no other dependencies:
https://docs.aws.amazon.com/cli/latest/userguide/awscli-install-windows.html