Add /Developer/usr/bin to your path and try again.

Answer from Daniel Beck on Stack Exchange
Discussions

macos - bash: make: command not found - Stack Overflow
I am in a directory with a Makefile, but can't use I cannot use make bash-3.2$ make bash: make: command not found How do I fix this? More on stackoverflow.com
🌐 stackoverflow.com
macos - sudo: command not found - Ask Different
Every time I try to use a sudo or ssh command, it returns with this error: when:~ jackson1442$ sudo [insert any command here] -bash: sudo: command not found I was messing with Python installs, and... More on apple.stackexchange.com
🌐 apple.stackexchange.com
April 29, 2017
linux - bash - make command not found - Stack Overflow
It might be that you have not installed ... you have not set your PATH variable to the correct location of bin utils. ... Find the answer to your question by asking. Ask question ... See similar questions with these tags. ... I’m Jody, the Chief Product and Technology Officer at Stack Overflow. Let’s... 9 How can I use/install "make" on the Amazon Linux AMI for EC2? 1 Is there a way to install and use gcc on MacBook ... More on stackoverflow.com
🌐 stackoverflow.com
macos - -bash: sudo: command not found Mac OS X (EC2 CLI prob?) - Stack Overflow
Getting the error: -bash: sudo: command not found echo $PATH outputs PATH:EC2_HOME/bin I'm running Mac OSX 10.8.3 That seems wrong even for a n00b like me. How do I fix my $PATH and return my co... More on stackoverflow.com
🌐 stackoverflow.com
🌐
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. On Linux, make is often preinstalled or included with package sets like build-essential. On Mac, it’s included with the Xcode command line tools, whereas on Windows, you must manually install it.
🌐
iBoysoft
iboysoft.com › home › how to tips › [fixed] mac command not found error in terminal: zsh & bash
[Fixed] Mac Command Not Found Error in Terminal: Zsh & Bash
February 3, 2026 - Users unfamiliar with the commands often make mistakes like forgetting to include a space at where it's required or adding unnecessary symbols into the command. For instance, you may enter sudo nano/private/etc/hosts to edit the Host files with Nano when the correct syntax has a space after nano, which should be sudo nano /private/etc/hosts. Or you may copy and paste a line like $ brew install pyqt into Terminal, which only returns the error: "-bash: $: command not found" on Mac...
Find elsewhere
🌐
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.
🌐
Apple Community
discussions.apple.com › thread › 7760102
-bash: sudo: command not found - Apple Community
November 25, 2016 - No matter what I type, the only thing that shows up is "command not found" or "no such file or directory"
🌐
Jigsaw24
jigsaw24.com › resource › ask-an-expert-how-to-fix-sudo-command-not-found-error
Ask an Expert: How to fix “sudo: command not found” error | Jigsaw24 - Leading UK Systems Integrator
September 12, 2024 - How can you fix a “sudo: command not found” error on Mac? Our experts answer your macOS questions and give you the best tips.
🌐
Quora
quora.com › When-I-use-terminal-in-my-Mac-M1-these-messages-appear-when-I-ask-for-bash-or-sudo-bash-ls-command-not-found-and-sudo-commands-not-found-Why
When I use terminal in my Mac M1, these messages appear when I ask for bash or sudo, 'bash: ls: command not found' and 'sudo: commands not found'. Why? - Quora
Answer (1 of 5): Bash has not been the default Shell for decades, it’s now Zsh by default, and you don’t type any command for it, as soon as you launch the Terminal app it invoked the Shell for you so you just type commands. Don’t type the colon, there is no such thing as a command with a colon ...
🌐
Linus Tech Tips
linustechtips.com › software › operating systems › linux, macos and everything not-windows
Ubuntu "make" command not working...at all - Linux, macOS and Everything Not-Windows - Linus Tech Tips
November 27, 2018 - I've been trying for a long time to install a driver on Ubuntu but without success. I try to run the executable in the terminal, prefacing it with "sudo", and it outputs a bunch of text and then says "Compile make driver error: 127 Please Check error Msg". I looked at what it said just before thi...
🌐
MacKeeper
mackeeper.com › blog › mac fixes › mac command not found
Mac Command Not Found: How to Fix It in MacOS Terminal
May 14, 2025 - Use the package manager appropriate for your macOS version · Install the package by entering the command specific to the package manager. Make sure to regularly update your package manager to keep all packages up-to-date. Despite most packages setting up the path automatically, occasionally users might encounter the command not found ...
🌐
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.
🌐
Apple Community
discussions.apple.com › thread › 8653929
sudo: command not found - Apple Community
November 30, 2018 - Make sure they all have commands in them. See if you can spot "awk" or "sudo" anywhere. If any of the command directories shows as "not found" by the ls command, that's your problem.
🌐
Baeldung
baeldung.com › home › administration › fixing the “command not found” error when using sudo
Fixing the “Command Not Found” Error When Using Sudo | Baeldung on Linux
March 18, 2024 - To fix this error permanently, we can either configure sudo to always inherit the $PATH variable or set a $PATH for it manually by modifying /etc/sudoers. First, we need to run visudo to open up the /etc/sudoers file for modification.