-
Notifications
You must be signed in to change notification settings - Fork 0
Getting started & installations
Putter Tiatragul edited this page Jun 25, 2022
·
2 revisions
- Register for a Github account.
- Install git or Github Desktop - We will use this for as a version control system.
- Install Chocolatey (a Windows package installer) -- we use this to easily manage installations of other programs we need.
- (Optional) A dedicated text editor -- popular ones include Visual Studio Code (VS Code) and Sublime. In this tutorial I'll use VS Code
-
Open Windows Powershell as administrator (you can do this with right-click and select option 'Run as Administrator' We will install two programs via Choco.
- Go Programming Language
- Hugo
In the Powershell terminal, type
choco install go -y
Press enter. This will install Go programming language, which is what Hugo relies on. Once that is complete, we can install Hugo by typing in the terminal.
choco install hugo-extended -y
This will tell Choco to download and install the latest version of Hugo.
Test the installations with
hugo version
go version
If these commands return some version number, then you've successfully installed the software.


We use this to synchronise our local folder with Google Cloud storage You can view installation instructions here