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 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.
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 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