make is in the make package, part of the "Development Tools" group which you should install before attempting to build anything.

Answer from Ignacio Vazquez-Abrams on Stack Overflow
🌐
Red Hat
redhat.com › en › blog › fix-command-not-found-error-linux
How to fix a "Command not found" error in Linux
November 20, 2025 - In this tutorial, you learned five ways to fix a "Command not found" error in your terminal—three of which rely on the PATH variable.
🌐
Power Sysadmin Blog
poweradm.com › home › make command not found on linux
Make Command Not Found on Linux - Power Sysadmin Blog
March 23, 2023 - You can install it by typing: sudo apt install make · First of all, make sure that the make command is installed on your Linux distribution and that the path to its directory is included in the PATH environment variable.
🌐
SharadChhetri
sharadchhetri.com › make-command-not-found-in-linux-centos-red-hat-ubuntu-debian
make command not found in linux CentOS Red Hat ubuntu Debian
December 10, 2024 - While mounting the Gluster Volume into Ubuntu 14.04 client, recently met with warning that is “WARNING: getfattr not found, certain checks will be skipped..” . We are writing this quick solution for this warning. As the WARNING itself speaks about getfattr not found. So we will work on to get this command on our system….
🌐
Linux Questions
linuxquestions.org › questions › linux-software-2 › make-command-not-found-4175653702
make command not found - Linux - Software
I'm currently running Devuan in an i3 4G ram on my machine and trying to install from source, because Devuan does not offer dvb-utils. The app
🌐
The Geek Diary
thegeekdiary.com › make-command-not-found
make: command not found – The Geek Diary
make: command not found · you may try installing the below package as per your choice of distribution: 1. Call the first target specified in the Makefile (usually named “all”): # make · 2. Call a specific target: # make target · 3. Call a specific target, executing 4 jobs at a time in parallel: # make -j4 target ·
Find elsewhere
🌐
iO Flood
ioflood.com › blog › install-make-command-linux
Intro to 'make' Linux Command: Installation and Usage
April 26, 2024 - One of the most common issues is the ‘make: command not found’ error. This error occurs when the ‘make’ command is not installed on your system or the system can’t locate it. To resolve this, you need to install ‘make’ using the appropriate package manager for your distribution (as we discussed earlier).
🌐
Cyfuture Cloud
cyfuture.cloud › kb › general › bash-make-command-not-found
Bash Make Command Not Found
Once you've successfully installed the make command and updated your PATH (if necessary), you should be able to run make without encountering the "-bash: Establishing the version of MySQL to run as well as setting up the required variables with "export" command, I encountered the "make: command not found" error.
🌐
Stack Overflow
stackoverflow.com › questions › 76571584 › make1-python-command-not-found
redhat - make[1]: python: Command not found - Stack Overflow
June 28, 2023 - While installing it is failing with python: Command not found error. When execute python command, it is getting python console. make for d in rpmUtils yum etc docs po; do make PYTHON=python -C $d; [ $? = 0 ] || exit 1 ; done make[1]: python: Command not found make[1]: Entering directory `/usr/src/yum-3.4.3/rpmUtils' make[1]: python: Command not found echo "Nothing to do" Nothing to do make[1]: Leaving directory `/usr/src/yum-3.4.3/rpmUtils' make[1]: python: Command not found make[1]: Entering directory `/usr/src/yum-3.4.3/yum' make[1]: python: Command not found echo "Nothing to do" Nothing to
🌐
Tech News Today
technewstoday.com › home › linux › how to fix “make: command not found” error
How to Fix “Make: Command Not Found” Error - Tech News Today
September 20, 2022 - The Make Command Not Found error indicates that the make utility is either not installed on the system or it’s not present in the PATH variable.
🌐
MakeUseOf
makeuseof.com › home › linux › how to fix the "make: command not found" error in ubuntu
How to Fix the "make: command not found" Error in Ubuntu
March 31, 2023 - To fix this issue, reinstall make with the --reinstall command. ... If this still does not work, you must manually add the binary to your $PATH as a last step. In all entirety, the above steps should work and you should get past this "command ...
🌐
Delft Stack
delftstack.com › home › howto › linux › bash make command not found error
How to Solve Make Command Not Found Error in Linux Bash | Delft Stack
March 14, 2025 - The make utility automates the process of building and managing dependencies in software projects. It reads a file called Makefile, which contains rules and instructions for compiling code. When you encounter the “command not found” error, it usually means that make is not installed on your system or it’s not in your PATH.
🌐
Its Linux FOSS
itslinuxfoss.com › fix-bash-make-command-not-found
ItsLinuxFOSS - Tutorials on Linux, Programming & Technology
You can install Wine on Ubuntu 24.04 by adding the GPG key, winehq repository, and then installing the application from the apt install command. To if a string is empty or not in bash -z string comparison operator is used.
🌐
nixCraft
cyberciti.biz › nixcraft › howto › freebsd › linux / unix: command not found error and solution
Linux / UNIX: Command Not Found Error and Solution - nixCraft
October 28, 2020 - i installed nasm . now when i assemble in terminal ,it produces the .o file but when i write the command for linking, ld -o str str.o , it says bash: ld: command not found… what’s wrong? ... I have created a simple script in a file and stored at location (/home/mint).I have changed the file permission to 755 to make it executable.However when i type file name on terminal it shows me that “Command not found”. Here is the solution: 1) File name program1.sh #!/bin/sh -x ls -l 2)Stored at location /home/mint 3)make it executable $chmod 755 program1.sh 4)PWD /home/mint 5)add the location of file in the PATH variable $export PATH=$PATH:/home/mint 6)ls command should be in the path as per $PATH variable value.
🌐
It's FOSS
itsfoss.com › make-command-not-found-ubuntu
Make Command Not Found? Here's How to Fix it
January 11, 2023 - The other day I was trying to compile a program on a fresh new Ubuntu system and it threw me an error when I tried to use the make command: The program 'make' is currently not installed. You can install it by typing: sudo apt install make One of the