2014-07-16 23:51:48 +02:00
---
layout: "intro"
page_title: "Installing Terraform"
sidebar_current: "gettingstarted-install"
2014-10-22 05:21:56 +02:00
description: |-
Terraform must first be installed on your machine. Terraform is distributed as a binary package for all supported platforms and architecture. This page will not cover how to compile Terraform from source.
2014-07-16 23:51:48 +02:00
---
# Install Terraform
2014-07-23 23:06:47 +02:00
Terraform must first be installed on your machine. Terraform is distributed
as a [binary package ](/downloads.html ) for all supported platforms and
architecture. This page will not cover how to compile Terraform from
2014-07-16 23:51:48 +02:00
source.
## Installing Terraform
To install Terraform, find the [appropriate package ](/downloads.html ) for
2014-07-23 23:06:47 +02:00
your system and download it. Terraform is packaged as a zip archive.
After downloading Terraform, unzip the package into a directory where
Terraform will be installed. The directory will contain a set of binary
programs, such as `terraform` , `terraform-provider-aws` , etc. The final
step is to make sure the directory you installed Terraform to is on the
PATH. See
[this page ](http://stackoverflow.com/questions/14637979/how-to-permanently-set-path-on-linux )
for instructions on setting the PATH on Linux and Mac.
[This page ](http://stackoverflow.com/questions/1618280/where-can-i-set-path-to-make-exe-on-windows )
contains instructions for setting the PATH on Windows.
2014-07-16 23:51:48 +02:00
## Verifying the Installation
After installing Terraform, verify the installation worked by opening a new
terminal session and checking that `terraform` is available. By executing
`terraform` you should see help output similar to that below:
```
$ terraform
usage: terraform [--version] [--help] < command > [< args > ]
Available commands are:
2014-07-23 23:06:47 +02:00
apply Builds or changes infrastructure
2015-03-24 20:06:09 +01:00
destroy Destroy Terraform-managed infrastructure
get Download and install modules for the configuration
2014-07-23 23:06:47 +02:00
graph Create a visual graph of Terraform resources
2015-03-24 20:06:09 +01:00
init Initializes Terraform configuration from a module
2014-07-23 23:06:47 +02:00
output Read an output from a state file
plan Generate and show an execution plan
refresh Update local state file against real resources
2015-03-24 20:06:09 +01:00
remote Configure remote state storage
2014-07-23 23:06:47 +02:00
show Inspect Terraform state or plan
2015-03-24 20:06:09 +01:00
taint Manually mark a resource for recreation
2014-07-23 23:06:47 +02:00
version Prints the Terraform version
2014-07-16 23:51:48 +02:00
```
If you get an error that `terraform` could not be found, then your PATH
environment variable was not setup properly. Please go back and ensure
that your PATH variable contains the directory where Terraform was installed.
2015-06-17 02:01:22 +02:00
Otherwise, Terraform is installed and ready to go! Nice!
## Next Step
Time to [build infrastructure ](/intro/getting-started/build.html )
using a minimal Terraform configuration file. You will be able to
examine Terraform's execution plan before you deploy it to AWS.