Merge pull request #1256 from DualSpark/aws-readme-updates

Updating AWS to use pypi instead of brew
This commit is contained in:
Chris Love 2016-12-29 21:18:43 -07:00 committed by GitHub
commit f3eb195da5
1 changed files with 17 additions and 0 deletions

View File

@ -53,12 +53,29 @@ Kubernetes kops uses the official AWS Go SDK, so all we need to do here is set u
#### OS X
##### Installing aws cli
The officially supported way of installing the tool is with `pip` as in
```bash
pip install awscli
```
You can also grab the tool with homebrew, although this is not officially supported.
```bash
brew update && brew install awscli
```
Now configure the tool, and verify it works.
```bash
aws configure # Input your credentials here
aws iam list-users
```
PyPi is the officially supported `aws cli` download avenue, and kops suggests using it. [More information](https://pypi.python.org/pypi/awscli) on the package.
#### Other Platforms
Official documentation [here](http://docs.aws.amazon.com/cli/latest/userguide/installing.html)