Go to ezwinports, https://sourceforge.net/projects/ezwinports/files/
Download make-4.2.1-without-guile-w32-bin.zip (get the version without guile)
- Extract zip
- Copy the contents to C:\ProgramFiles\Git\mingw64\ merging the folders, but do NOT overwrite/replace any exisiting files.
Go to ezwinports, https://sourceforge.net/projects/ezwinports/files/
Download make-4.2.1-without-guile-w32-bin.zip (get the version without guile)
- Extract zip
- Copy the contents to C:\ProgramFiles\Git\mingw64\ merging the folders, but do NOT overwrite/replace any exisiting files.
You can also use Chocolatey.
Having it installed, just run:
Copychoco install make
When it finishes, it is installed and available in Git for Bash / MinGW.
I'm trying to install vim with git per the [websites instructions](https://www.vim.org/git.php) and when I try to run "make", git returns "bash: make: command not found". I found a [thread](https://stackoverflow.com/questions/36770716/mingw64-make-build-error-bash-make-command-not-found) about it on stack overflow saying to install and use either chocolatey or ezwinports but I cant get it to work. Can someone help me out please. Its probably something simple I'm doing wrong but I cant seem to figure it out.
Any idea for how to run "make" commands in windows
Bash doesn't recognize the make command?
cs50x - bash: make: command not found - CS50 Stack Exchange
make command not found
Videos
You can also use chocolatey to install it:
Copychoco install make
Here's the package.
Sounds like Make isn't in your git-bash's path.
A quick search shows this guide, which suggests the following steps:
- Go to ezwinports.
- Download make-4.1-2-without-guile-w32-bin.zip (get the version without guile).
- Extract zip.
- Copy the contents to your Git\mingw64\ merging the folders, but do NOT overwrite/replace any existing files.
The guide is several years old. It may behoove you to read some of the comments before taking action.
Hi all. I'm trying to install one of those local A.i programs. Using Manjaro KDE. I have the install command from github, but here is the output from the terminal:
[jersten@LinuxRig ~]$ git clone https://github.com/fredi-python/llama.cpp.git && cd llama.cpp && make -j && cd models && wget -c https://huggingface.co/CRD716/ggml-vicuna-1.1-quantized/resolve/main/ggml-vicuna-13B-1.1-q5_1.bin
Cloning into 'llama.cpp'...
remote: Enumerating objects: 3411, done.
remote: Counting objects: 100% (3411/3411), done.
remote: Compressing objects: 100% (1107/1107), done.
remote: Total 3411 (delta 2303), reused 3309 (delta 2267), pack-reused 0
Receiving objects: 100% (3411/3411), 3.05 MiB | 5.25 MiB/s, done.
Resolving deltas: 100% (2303/2303), done.
bash: make: command not found
[jersten@LinuxRig llama.cpp]$
Looks like everything was going well for awhile there. Any idea why I couldn't complete the installation? Thank you
Plan A
Find where make.exe is hiding and add it to your PATH.
Plan B
Install make (for example this one)
Plan B.2
Install the compilers and other stuff that are also usually needed for make to do anything useful. Have a look in your Makefile in C:\Users\Jenn\Documents\PhD\Software\trimAl\source or read the documentation for whatever you have downloaded in there.
Plan C
Find a precompiled Windows executable (preferably with a self-installer) of whatever thing you seek instead.
There is no make command in Windows. If you have some versions of Visual Studio installed, you may have a program named nmake, which is Windows' version of the classic UNIX make utility.
This is my first ever code using Codespaces and I have used both the VS browser and the desktop I have been getting the same "bash: make: command not found".
I have ensured that I am in the Mario-less folder using 'cd' command and also opened the file using 'code' command everything was good so far but I am not able to compile the program using the 'make mario'.
I have looked at old reddit posts and the internet and I still cant find a solution. You all would be Godsent if this gets solved and I this close to losing it as I have been trying it for days! Thank You!
Hi, I'm Robinson, and I’m happy to help you today.
I know how frustrating this may be for you but I'll do my very best to help you.
To fix this problem you need to install the chocolatey package manager for Windows and then install the GNU make, which will add make to the global path and runs on all CLIs (powershell, git bash, cmd, etc…)
1-Install the chocolatey package manager for Windows
https://docs.chocolatey.org/en-us/choco/setup
2-Then run this command to install the GNU make.
choco install make
Note: This is a non-Microsoft website. The page appears to be providing accurate, safe information. Watch out for ads on the site that may advertise products frequently classified as a PUP (Potentially Unwanted Products).
"This is a non-Microsoft website." Is this a problem because I am using Microsoft and also I didn't quite understand how to install or set it up.