Skip to main content

Make

Now it's time to install make! It is a small command-line tool which will be very helpful in the following, trust me ;)

  1. Open Powershell and run:
    winget install GnuWin32.make
    If the winget command does not work, install it from the Windows Store.
  2. Add make to your PATH:
    [Environment]::SetEnvironmentVariable("PATH", $Env:PATH + ";C:\Program Files (x86)\GnuWin32\bin\", [EnvironmentVariableTarget]::User)
  3. Close and restart your terminal, then test the command:
    make --version
In case it doesn't work... 😓

Try to install make by folloing this tutorial: technewstoday.com/install-and-use-make-in-windows.