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 ;)
- Windows
- MacOS/Linux
- Open Powershell and run:
If the
winget install GnuWin32.make
winget
command does not work, install it from the Windows Store. - Add
make
to your PATH:[Environment]::SetEnvironmentVariable("PATH", $Env:PATH + ";C:\Program Files (x86)\GnuWin32\bin\", [EnvironmentVariableTarget]::User)
- 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.
Make is already installed on your system! You have nothing to do 😁
Try it with:
make --version