mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
74 lines
1.8 KiB
Markdown
74 lines
1.8 KiB
Markdown
|
---
|
||
|
title: Windows
|
||
|
description: Install Hugo on Windows.
|
||
|
categories: [installation]
|
||
|
keywords: []
|
||
|
menu:
|
||
|
docs:
|
||
|
parent: installation
|
||
|
weight: 40
|
||
|
weight: 40
|
||
|
toc: true
|
||
|
---
|
||
|
|
||
|
{{% note %}}
|
||
|
Hugo v0.121.1 and later require at least Windows 10 or Windows Server 2016.
|
||
|
{{% /note %}}
|
||
|
|
||
|
{{% include "installation/_common/01-editions.md" %}}
|
||
|
|
||
|
{{% include "installation/_common/02-prerequisites.md" %}}
|
||
|
|
||
|
{{% include "installation/_common/03-prebuilt-binaries.md" %}}
|
||
|
|
||
|
## Package managers
|
||
|
|
||
|
### Chocolatey
|
||
|
|
||
|
[Chocolatey] is a free and open-source package manager for Windows. To install the extended edition of Hugo:
|
||
|
|
||
|
```sh
|
||
|
choco install hugo-extended
|
||
|
```
|
||
|
|
||
|
[Chocolatey]: https://chocolatey.org/
|
||
|
|
||
|
### Scoop
|
||
|
|
||
|
[Scoop] is a free and open-source package manager for Windows. To install the extended edition of Hugo:
|
||
|
|
||
|
```sh
|
||
|
scoop install hugo-extended
|
||
|
```
|
||
|
|
||
|
[Scoop]: https://scoop.sh/
|
||
|
|
||
|
### Winget
|
||
|
|
||
|
[Winget] is Microsoft's official free and open-source package manager for Windows. To install the extended edition of Hugo:
|
||
|
|
||
|
```sh
|
||
|
winget install Hugo.Hugo.Extended
|
||
|
```
|
||
|
|
||
|
[Winget]: https://learn.microsoft.com/en-us/windows/package-manager/
|
||
|
|
||
|
{{% include "installation/_common/04-build-from-source.md" %}}
|
||
|
|
||
|
{{% note %}}
|
||
|
See these [detailed instructions](https://discourse.gohugo.io/t/41370) to install GCC on Windows.
|
||
|
{{% /note %}}
|
||
|
|
||
|
## Comparison
|
||
|
|
||
|
||Prebuilt binaries|Package managers|Build from source
|
||
|
:--|:--:|:--:|:--:
|
||
|
Easy to install?|:heavy_check_mark:|:heavy_check_mark:|:heavy_check_mark:|
|
||
|
Easy to upgrade?|:heavy_check_mark:|:heavy_check_mark:|:heavy_check_mark:
|
||
|
Easy to downgrade?|:heavy_check_mark:|:heavy_check_mark: [^2]|:heavy_check_mark:
|
||
|
Automatic updates?|:x:|:x: [^1]|:x:
|
||
|
Latest version available?|:heavy_check_mark:|:heavy_check_mark:|:heavy_check_mark:
|
||
|
|
||
|
[^1]: Possible but requires advanced configuration.
|
||
|
[^2]: Easy if a previous version is still installed.
|