Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...

Downloads:
134,991
Downloads of v 0.80.0:
2,213
Last Update:
31 Dec 2020
Package Maintainer(s):
Software Author(s):
- Hugo Authors
Tags:
hugo blog static website- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Hugo
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
134,991
Downloads of v 0.80.0:
2,213
Maintainer(s):
Software Author(s):
- Hugo Authors
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
All Checks are Passing
2 Passing Test
To install Hugo, run the following command from the command line or from PowerShell:
To upgrade Hugo, run the following command from the command line or from PowerShell:
To uninstall Hugo, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download hugo --internalize --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade hugo -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade hugo -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure hugo installed
win_chocolatey:
name: hugo
state: present
version: 0.80.0
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'hugo' do
action :install
version '0.80.0'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: hugo,
Version: 0.80.0,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller hugo
{
Name = 'hugo'
Ensure = 'Present'
Version = '0.80.0'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'hugo':
provider => 'chocolatey',
ensure => '0.80.0',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install hugo version="0.80.0" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 31 Dec 2020.
Hugo is a static HTML and CSS website generator written in Go. It is optimized for speed, ease of use, and configurability. Hugo takes a directory with content and templates and renders them into a full HTML website.
Hugo relies on Markdown files with front matter for metadata, and you can run Hugo from any directory. This works well for shared hosts and other systems where you don’t have a privileged account.
Hugo renders a typical website of moderate size in a fraction of a second. A good rule of thumb is that each piece of content renders in around 1 millisecond.
Hugo is designed to work well for any kind of website including blogs, tumbles, and docs.
NOTE: Between version 0.51 and 0.71 the x86 version only installs v0.51 of Hugo (x64 version is fine). This is fixed from the version after 0.71 here thanks to mikee.
NOTE: This is an automatically updated package. If you find it is out of date by more than a week, please contact the maintainer(s) and let them know the package is no longer updating correctly.
$ErrorActionPreference = 'Stop'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $toolsDir
url = 'https://github.com//gohugoio/hugo/releases/download/v0.80.0/hugo_0.80.0_Windows-32bit.zip'
url64 = 'https://github.com//gohugoio/hugo/releases/download/v0.80.0/hugo_0.80.0_Windows-64bit.zip'
checksum = '2004e31b5c20704d6ada07f2b54c033ee3cfe54602d2cc50fb61acd664f89edc'
checksumType = 'SHA256'
checksum64 = '619e55b56e36d42afee3985779541d129b285a4f3183ba569012e6a417c53555'
checksumType64 = 'SHA256'
}
Install-ChocolateyZipPackage @packageArgs
$ErrorActionPreference = 'Stop';
$hugoExe = Get-ChildItem $(Split-Path -Parent $MyInvocation.MyCommand.Definition) | Where-Object -Property Name -Match "hugo.exe"
if (-Not($hugoExe))
{
Write-Error -Message "hugo exe is not found, please contact the maintainer of the package" -Category ResourceUnavailable
}
Write-Host "found hugo exe in $($hugoExe.FullName)"
Write-Host "attempting to remove it"
Remove-Item $hugoExe.FullName
Log in or click on link to see number of positives.
- hugo.0.80.0.nupkg (3d91b85aefe0) - ## / 62
- hugo_0.80.0_Windows-64bit.zip (619e55b56e36) - ## / 65
- hugo_0.80.0_Windows-32bit.zip (2004e31b5c20) - ## / 66
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Hugo 0.80.0 | 2213 | Thursday, December 31, 2020 | Approved |
Hugo 0.79.1 | 1163 | Saturday, December 19, 2020 | Approved |
Hugo 0.79.0 | 2015 | Friday, November 27, 2020 | Approved |
Hugo 0.78.2 | 1224 | Friday, November 13, 2020 | Approved |
Hugo 0.78.1 | 1344 | Thursday, November 5, 2020 | Approved |
Hugo 0.78.0 | 369 | Tuesday, November 3, 2020 | Approved |
Hugo 0.77.0 | 687 | Friday, October 30, 2020 | Approved |
Hugo 0.76.5 | 1651 | Wednesday, October 14, 2020 | Approved |
Hugo 0.76.4 | 673 | Monday, October 12, 2020 | Approved |
Hugo 0.76.3 | 555 | Thursday, October 8, 2020 | Approved |
Hugo 0.76.2 | 310 | Wednesday, October 7, 2020 | Approved |
Hugo 0.76.0 | 163 | Tuesday, October 6, 2020 | Approved |
Hugo 0.75.1 | 2072 | Tuesday, September 15, 2020 | Approved |
Hugo 0.75.0 | 249 | Monday, September 14, 2020 | Approved |
Hugo 0.74.3 | 3958 | Thursday, July 23, 2020 | Approved |
Hugo 0.74.2 | 764 | Friday, July 17, 2020 | Approved |
Hugo 0.74.1 | 584 | Tuesday, July 14, 2020 | Approved |
Hugo 0.74.0 | 181 | Monday, July 13, 2020 | Approved |
Hugo 0.73.0 | 1902 | Tuesday, June 23, 2020 | Approved |
Hugo 0.72.0 | 2307 | Sunday, May 31, 2020 | Approved |
Hugo 0.71.1 | 824 | Monday, May 25, 2020 | Approved |
Hugo 0.71.0 | 866 | Monday, May 18, 2020 | Approved |
Hugo 0.70.0 | 1775 | Wednesday, May 6, 2020 | Approved |
Hugo 0.69.2 | 1330 | Friday, April 24, 2020 | Approved |
Hugo 0.69.1 | 472 | Wednesday, April 22, 2020 | Approved |
Hugo 0.69.0 | 1465 | Friday, April 10, 2020 | Approved |
Hugo 0.68.3 | 1660 | Friday, March 27, 2020 | Approved |
Hugo 0.68.2 | 517 | Tuesday, March 24, 2020 | Approved |
Hugo 0.68.1 | 423 | Sunday, March 22, 2020 | Approved |
Hugo 0.68.0 | 225 | Saturday, March 21, 2020 | Approved |
Hugo 0.67.1 | 2065 | Monday, March 16, 2020 | Approved |
Hugo 0.67.0 | 786 | Tuesday, March 10, 2020 | Approved |
Hugo 0.66.0 | 850 | Tuesday, March 3, 2020 | Approved |
Hugo 0.65.3 | 1380 | Sunday, February 23, 2020 | Approved |
Hugo 0.65.2 | 367 | Friday, February 21, 2020 | Approved |
Hugo 0.65.1 | 132 | Thursday, February 20, 2020 | Approved |
Hugo 0.65.0 | 79 | Thursday, February 20, 2020 | Approved |
Hugo 0.64.1 | 1804 | Monday, February 10, 2020 | Approved |
Hugo 0.64.0 | 817 | Tuesday, February 4, 2020 | Approved |
Hugo 0.63.2 | 1100 | Monday, January 27, 2020 | Approved |
Hugo 0.63.1 | 526 | Friday, January 24, 2020 | Approved |
Hugo 0.63.0 | 146 | Thursday, January 23, 2020 | Approved |
Hugo 0.62.2 | 2347 | Monday, January 6, 2020 | Approved |
Hugo 0.62.1 | 669 | Wednesday, January 1, 2020 | Approved |
Hugo 0.62.0 | 886 | Monday, December 23, 2019 | Approved |
Hugo 0.61.0 | 1289 | Wednesday, December 11, 2019 | Approved |
Hugo 0.60.1 | 1199 | Friday, November 29, 2019 | Approved |
Hugo 0.60.0 | 418 | Wednesday, November 27, 2019 | Approved |
Hugo 0.59.1 | 2415 | Thursday, October 31, 2019 | Approved |
Hugo 0.59.0 | 1174 | Monday, October 21, 2019 | Approved |
Hugo 0.58.3 | 3078 | Thursday, September 19, 2019 | Approved |
Hugo 0.58.2 | 912 | Friday, September 13, 2019 | Approved |
Hugo 0.58.1 | 1051 | Friday, September 6, 2019 | Approved |
Hugo 0.58.0 | 382 | Wednesday, September 4, 2019 | Approved |
Hugo 0.57.2 | 2502 | Saturday, August 17, 2019 | Approved |
Hugo 0.57.1 | 302 | Friday, August 16, 2019 | Approved |
Hugo 0.57.0 | 373 | Wednesday, August 14, 2019 | Approved |
Hugo 0.56.3 | 1425 | Wednesday, July 31, 2019 | Approved |
Hugo 0.56.2 | 272 | Tuesday, July 30, 2019 | Approved |
Hugo 0.56.1 | 357 | Sunday, July 28, 2019 | Approved |
Hugo 0.56.0 | 513 | Thursday, July 25, 2019 | Approved |
Hugo 0.55.6 | 5945 | Saturday, May 18, 2019 | Approved |
Hugo 0.55.5 | 1695 | Thursday, May 2, 2019 | Approved |
Hugo 0.55.4 | 919 | Thursday, April 25, 2019 | Approved |
Hugo 0.55.3 | 649 | Saturday, April 20, 2019 | Approved |
Hugo 0.55.2 | 481 | Wednesday, April 17, 2019 | Approved |
Hugo 0.55.1 | 822 | Friday, April 12, 2019 | Approved |
Hugo 0.55.0 | 686 | Monday, April 8, 2019 | Approved |
Hugo 0.54.0 | 5895 | Friday, February 1, 2019 | Approved |
Hugo 0.53 | 3088 | Monday, December 24, 2018 | Approved |
Hugo 0.52 | 1799 | Wednesday, November 28, 2018 | Approved |
Hugo 0.51 | 1349 | Monday, November 12, 2018 | Approved |
Hugo 0.50 | 126 | Monday, November 12, 2018 | Approved |
hugo 0.49 | 2908 | Monday, October 1, 2018 | Approved |
hugo 0.48 | 1991 | Thursday, September 6, 2018 | Approved |
hugo 0.47.1 | 1481 | Tuesday, August 21, 2018 | Approved |
hugo 0.47 | 138 | Tuesday, August 21, 2018 | Approved |
hugo 0.46 | 134 | Tuesday, August 21, 2018 | Approved |
hugo 0.45.1 | 128 | Tuesday, August 21, 2018 | Approved |
hugo 0.45 | 2170 | Monday, July 23, 2018 | Approved |
hugo 0.44 | 790 | Saturday, July 14, 2018 | Approved |
hugo 0.43 | 151 | Saturday, July 14, 2018 | Approved |
hugo 0.42.2 | 208 | Friday, July 13, 2018 | Approved |
hugo 0.42.1 | 2004 | Thursday, June 14, 2018 | Approved |
hugo 0.42 | 168 | Thursday, June 14, 2018 | Approved |
hugo 0.41 | 1160 | Friday, June 1, 2018 | Approved |
hugo 0.40.3 | 1355 | Monday, May 14, 2018 | Approved |
hugo 0.40.2 | 1059 | Wednesday, May 2, 2018 | Approved |
hugo 0.40.1 | 200 | Wednesday, May 2, 2018 | Approved |
hugo 0.40 | 793 | Tuesday, April 24, 2018 | Approved |
hugo 0.39 | 202 | Tuesday, April 24, 2018 | Approved |
hugo 0.38.2 | 1056 | Friday, April 13, 2018 | Approved |
hugo 0.38.1 | 178 | Friday, April 13, 2018 | Approved |
hugo 0.38 | 943 | Tuesday, April 3, 2018 | Approved |
hugo 0.37.1 | 175 | Tuesday, April 3, 2018 | Approved |
hugo 0.37 | 2080 | Monday, March 5, 2018 | Approved |
hugo 0.36 | 1483 | Monday, February 12, 2018 | Approved |
hugo 0.35 | 409 | Friday, February 9, 2018 | Approved |
hugo 0.34 | 793 | Monday, January 29, 2018 | Approved |
hugo 0.33 | 222 | Monday, January 29, 2018 | Approved |
hugo 0.32.4 | 965 | Monday, January 15, 2018 | Approved |
hugo 0.32.3 | 204 | Monday, January 15, 2018 | Approved |
hugo 0.32.2 | 839 | Thursday, January 4, 2018 | Approved |
hugo 0.32.1 | 222 | Thursday, January 4, 2018 | Approved |
hugo 0.32 | 220 | Thursday, January 4, 2018 | Approved |
hugo 0.31.1 | 1594 | Friday, December 22, 2017 | Approved |
hugo 0.30.2 | 2564 | Monday, October 30, 2017 | Approved |
hugo 0.30.1 | 246 | Monday, October 30, 2017 | Approved |
hugo 0.30 | 974 | Tuesday, October 17, 2017 | Approved |
hugo 0.29 | 859 | Friday, October 6, 2017 | Approved |
hugo 0.27.1 | 1117 | Monday, September 18, 2017 | Approved |
hugo 0.26 | 253 | Monday, September 18, 2017 | Approved |
hugo 0.25.1 | 3056 | Sunday, July 16, 2017 | Approved |
hugo 0.22.1 | 899 | Tuesday, June 13, 2017 | Approved |
hugo 0.20.5 | 1351 | Tuesday, April 25, 2017 | Approved |
hugo 0.20.0 | 665 | Tuesday, April 11, 2017 | Approved |
hugo 0.19.0 | 1615 | Wednesday, March 1, 2017 | Approved |
hugo 0.18.1.20170131 | 1180 | Tuesday, January 31, 2017 | Approved |
hugo 0.18.1 | 376 | Friday, January 13, 2017 | Approved |
hugo 0.17 | 596 | Wednesday, October 19, 2016 | Approved |
hugo 0.15 | 480 | Thursday, March 3, 2016 | Approved |
hugo 0.14 | 423 | Friday, September 4, 2015 | Approved |
hugo 0.12 | 536 | Sunday, December 7, 2014 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Hugo and the Hugo package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Hugo, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.