mirror of https://github.com/kubernetes/kops.git
Installtion of AWS CLI tools
Added the necessary installation links for Windows and Linux.
This commit is contained in:
parent
3489ea317e
commit
6c88d6ab91
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue