github.com/marksheahan/packer@v0.10.2-0.20160613200515-1acb2d6645a0/website/source/downloads.html.erb (about) 1 --- 2 page_title: "Downloads" 3 --- 4 5 <header class="dark-background"> 6 <div class="container header text-center"> 7 <h1 class="text-green">Downloads</h1> 8 <span class="text-green">Latest version: <%= latest_version %></span> 9 </div> 10 </header> 11 <section class="downloads"> 12 <div class="container"> 13 <div class="description row"> 14 <div class="col-md-8 col-md-offset-2"> 15 <p> 16 Below are the available downloads for the latest version of Packer 17 (<%= latest_version %>). Please download the proper package for your 18 operating system and architecture. 19 </p> 20 <p> 21 You can find the 22 <a href="https://releases.hashicorp.com/packer/<%= latest_version %>/packer_<%= latest_version %>_SHA256SUMS"> 23 SHA256 checksums for Packer <%= latest_version %> 24 </a> 25 online and you can 26 <a href="https://releases.hashicorp.com/packer/<%= latest_version %>/packer_<%= latest_version %>_SHA256SUMS.sig"> 27 verify the checksums signature file 28 </a> 29 which has been signed using <a href="https://www.hashicorp.com/security.html" target="_blank" rel="nofollow noopener noreferrer">HashiCorp's GPG key</a>. 30 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. 31 </p> 32 <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> 33 <p> 34 <b>Note:</b> Packer now ships as a single binary. When upgrading from 35 Packer < 0.9.0, you will need to remove the old <code>packer-*</code> 36 plugins from your installation path. 37 </p> 38 </div> 39 </div> 40 <% product_versions.each do |os, arches| %> 41 <% next if os == "web" %> 42 <div class="row"> 43 <div class="col-md-8 col-md-offset-2 download"> 44 <div class="icon pull-left"><%= system_icon(os) %></div> 45 <div class="details"> 46 <h2 class="os-name"><%= pretty_os(os) %></h2> 47 <ul> 48 <% arches.each do |arch, url| %> 49 <li><a href="<%= url %>"><%= pretty_arch(arch) %></a></li> 50 <% end %> 51 </ul> 52 <div class="clearfix"></div> 53 </div> 54 </div> 55 </div> 56 <% end %> 57 58 <div class="row"> 59 <div class="col-md-8 col-md-offset-2 poweredby"> 60 <a href="https://www.fastly.com?utm_source=hashicorp" target="_blank" rel="nofollow noopener noreferrer"> 61 <%= image_tag "fastly_logo.png" %> 62 </a> 63 </div> 64 </div> 65 </div> 66 </section>