Quick Start

One page summary of how to get started with Terraprep.

Installation Instructions

You can follow the instructions below to install Terraprep based on your platform.

Manual Installation

You can manually download Terraprep binaries from our Releases page based on your platform.

MacOS Linux Windows

Automated Installation

MacOS

You can download and install terraprep for MacOS using the commands below.

brew install unzip
tp_platform=darwin_arm64
tp_version=beta_0.8.0
curl -o terraprep.zip https://s3.eu-west-1.wasabisys.com/noss/terraprep/${tp_version}/terraprep_${tp_version}_${tp_platform}.zip
unzip terraprep.zip && rm terraprep.zip && mv "terraprep_${tp_version}_${tp_platform}" terraprep

Linux

You can download and install Terraprep for Linux using the commands below.

sudo apt-get install unzip
tp_platform=linux_amd64
tp_version=beta_0.8.0
curl -o terraprep.zip https://s3.eu-west-1.wasabisys.com/noss/terraprep/${tp_version}/terraprep_${tp_version}_${tp_platform}.zip
unzip terraprep.zip && rm terraprep.zip && mv "terraprep_${tp_version}_${tp_platform}" terraprep

Windows

You can download and install Terraprep for Windows using the commands below.

choco install 7zip.install
$tp_platform="windows_amd64"
$tp_version="beta_0.8.0"
Invoke-WebRequest -Uri "https://s3.eu-west-1.wasabisys.com/noss/terraprep/${tp_version}/terraprep_${tp_version}_${tp_platform}.zip" -OutFile terraprep.zip
7z.exe x terraprep.zip; rm terraprep.zip; mv "terraprep_${tp_version}_${tp_platform}.exe" terraprep.exe