Skip to main content
AIDA Spring 2026
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

Installation guide

Installation of node.js and Hugo

Windows

  1. Install Node.js from nodejs.org.
  2. Then install Hugo using WinGet package manager. Open Powershell as an Administrator and run:
winget install Hugo.Hugo.Extended

NB: A few students have reported, that they needed to run this bad-boy command in Powershell before step 2 (“running scripts is disabled on this system”):

Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned

macOS

  1. Install Homebrew if you haven’t already. Open Terminal and run:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  1. Install Node.js using Homebrew:
brew install node
  1. Install Hugo using Homebrew:
brew install hugo