2013-06-24 19:25:42 -04:00
---
page_title: "Downloads"
---
<header class="dark-background">
2015-07-22 20:18:08 -04:00
<div class="container header text-center">
<h1 class="text-green">Downloads</h1>
<span class="text-green">Latest version: <%= latest_version %></span>
</div>
2013-06-24 19:25:42 -04:00
</header>
<section class="downloads">
2015-07-22 20:18:08 -04:00
<div class="container">
<div class="description row">
<div class="col-md-8 col-md-offset-2">
<p>
2015-10-25 23:51:20 -04:00
Below are the available downloads for the latest version of Packer
(<%= latest_version %>). Please download the proper package for your
operating system and architecture.
</p>
<p>
You can find the
<a href="https://releases.hashicorp.com/packer/<%= latest_version %>/packer_<%= latest_version %>_SHA256SUMS">
SHA256 checksums for Packer <%= latest_version %>
</a>
online and you can
<a href="https://releases.hashicorp.com/packer/<%= latest_version %>/packer_<%= latest_version %>_SHA256SUMS.sig">
verify the checksums signature file
</a>
2016-05-05 16:12:56 -04:00
which has been signed using <a href="https://www.hashicorp.com/security.html" target="_blank" rel="nofollow noopener noreferrer">HashiCorp's GPG key</a>.
You can also <a href="https://releases.hashicorp.com/packer/" target="_blank" rel="nofollow noopener noreferrer">download older versions of Packer</a> from the releases service.
2015-07-22 20:18:08 -04:00
</p>
2016-04-29 22:09:52 -04:00
<p>To see what has changed in each version, please refer to the <a href="https://github.com/mitchellh/packer/blob/master/CHANGELOG.md">CHANGELOG</a>.</p>
2016-03-11 14:13:32 -05:00
<p>
<b>Note:</b> Packer now ships as a single binary. When upgrading from
Packer < 0.9.0, you will need to remove the old <code>packer-*</code>
plugins from your installation path.
</p>
2015-07-22 20:18:08 -04:00
</div>
</div>
2015-10-25 23:51:20 -04:00
<% product_versions.each do |os, arches| %>
<% next if os == "web" %>
2015-07-22 20:18:08 -04:00
<div class="row">
<div class="col-md-8 col-md-offset-2 download">
2015-10-25 23:51:20 -04:00
<div class="icon pull-left"><%= system_icon(os) %></div>
2015-07-22 20:18:08 -04:00
<div class="details">
2015-10-25 23:51:20 -04:00
<h2 class="os-name"><%= pretty_os(os) %></h2>
2015-07-22 20:18:08 -04:00
<ul>
2015-10-25 23:51:20 -04:00
<% arches.each do |arch, url| %>
<li><a href="<%= url %>"><%= pretty_arch(arch) %></a></li>
2015-07-22 20:18:08 -04:00
<% end %>
</ul>
<div class="clearfix"></div>
</div>
</div>
</div>
<% end %>
2015-10-25 23:51:20 -04:00
2015-07-22 20:18:08 -04:00
<div class="row">
<div class="col-md-8 col-md-offset-2 poweredby">
2016-05-05 16:12:56 -04:00
<a href="https://www.fastly.com?utm_source=hashicorp" target="_blank" rel="nofollow noopener noreferrer">
2015-10-25 23:51:20 -04:00
<%= image_tag "fastly_logo.png" %>
2015-07-22 20:18:08 -04:00
</a>
</div>
</div>
</div>
2013-06-24 19:25:42 -04:00
</section>