> For the complete documentation index, see [llms.txt](https://kubernauts.gitbook.io/kubernauts-kops-faststart/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kubernauts.gitbook.io/kubernauts-kops-faststart/labs/install-kops.md).

# Install Kops

To create, configure and destroy Kubernetes clusters on AWS the `kops` command is used.

## Install

**On Mac**

On Mac the easiest way is to install kops is via the [Brew](https://brew.sh) package manager.

```
$ brew update && brew install kops
```

**On Linux**

On Linux the latest release 1.6.2 is available under: <https://github.com/kubernetes/kops/releases/tag/1.6.2>

```
$ wget https://github.com/kubernetes/kops/releases/download/1.6.2/kops-linux-amd64

$ chmod +x kops-linux-amd64                 # Add execution permissions
$ mv kops-linux-amd64 /usr/local/bin/kops   # Move the kops to /usr/local/bin
```

**On Windows**

On Windows install Ubuntu / CentOS with Vagrant and then use the previous Linux instructions.

Confirm the version of `kops`.

```
$ kops version
Version 1.6.2
```

**NEXT**\
&#x20;[Install Kubectl](/kubernauts-kops-faststart/labs/install-kubectl.md)\
\
&#x20;**PREVIOUS**\
&#x20;[Pre-Requisites](/kubernauts-kops-faststart/overview/pre-requisites.md)
