Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Copyedits to installation-prerequisites.md #1390

Merged
merged 2 commits into from
Feb 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: "Before you begin"
linkTitle: "Before you begin"
title: Before you begin
date: 2021-12-08T11:12:59+01:00
weight: 1
description: >
Expand All @@ -13,7 +12,7 @@ This page describes the prerequisites for building a site that uses Docsy as a H

You need a [recent **extended** version](https://github.com/gohugoio/hugo/releases) (we recommend version 0.73.0 or later) of [Hugo](https://gohugo.io/) to do local builds and previews of sites (like this one) that use Docsy. If you install from the release page, make sure to get the `extended` Hugo version, which supports [SCSS](https://sass-lang.com/documentation/file.SCSS_FOR_SASS_USERS.html); you may need to scroll down the list of releases to see it.

For comprehensive Hugo documentation, see [gohugo.io](https://gohugo.io/).
For comprehensive Hugo documentation, see [gohugo.io](https://gohugo.io).

### On Linux

Expand All @@ -24,6 +23,7 @@ If you've already installed Hugo, check your version:
```bash
hugo version
```

If the result is `v0.73` or earlier, or if you don't see `Extended`, you'll need to install the latest version. You can see a complete list of Linux installation options in [Install Hugo](https://gohugo.io/getting-started/installing/#linux). The following shows you how to install Hugo from the release page:

1. Go to the [Hugo releases](https://github.com/gohugoio/hugo/releases) page.
Expand Down Expand Up @@ -68,7 +68,7 @@ See the [`hugo-bin` documentation](https://www.npmjs.com/package/hugo-bin) for u

Hugo's commands for module management require that the Go programming language is installed on your system. Check whether `go` is already installed:

```bash
```console
$ go version
go version go1.19.2 windows/amd64
```
Expand All @@ -82,9 +82,9 @@ If the `go` language is not installed on your system yet or if you need to upgra

Hugo's commands for module management require that the `git` client is installed on your system. Check whether `git` is already present in your system:

```bash
git version
git version 2.38.1.windows.1
```console
$ git version
git version 2.39.1
```

If no `git` client is installed on your system yet, go to the [Git website](https://git-scm.com/), download the installer for your system architecture and execute it. Afterwards, check for a successful installation.
Expand Down Expand Up @@ -136,7 +136,7 @@ You can check your current Node.js version by running `node -v`. If you need to

tl;dr:

```
```bash
# Using Ubuntu
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt-get install -y nodejs
Expand All @@ -150,7 +150,7 @@ You can check your current Node.js version by running `node -v`. If you need to

tl;dr:

```
```bash
# As root
curl -fsSL https://rpm.nodesource.com/setup_18.x | bash -

Expand Down