#Install Terraform on Windows
This tutorial explains how to install Terraform on Windows.
The easiest way to install Terraform on Windows is to run the following command:
Info
This command need to have Chocolatey installed on our machine. Chocolatey is a free and open-source package management system for Windows.
If Chocolatey is not installed on our machine, we can download the appropriate Terraform from here.
Once downloaded, we unzip the content into a folder, D:\terraform\terraform-home
in my case. The download file contains only one file: terraform.exe
.
This file must be accessible from anywhere, so we need to add the path above in PATH system variable.
When this is done, we can consider Terraform is installed on our machine.
We can test the installation by typing the terraform version
command:
Please enjoy Terraform !