Run this command to install make and all the packages needed to build your code.
sudo apt-get install build-essential
Answer from JorelC on askubuntu.comgo - MINGW64 "make build" error: "bash: make: command not found" - Stack Overflow
Bash doesn't recognize the make command?
Ubuntu: make error: command not found - Unix & Linux Stack Exchange
Ubuntu 'command-not-found' Tool Could Trick Users into Installing Rogue Packages
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.
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