# make
cc -Wall shc.c -o shc
make: cc: No such file or directory
make: *** [makefile:31: shc] Error 127
Fix:
The 127 error shows up when a command is not found, in my case, as you can see the cc command is not found, so we need to get the gcc package installed on my Ubuntu Linux.
# apt install gcc
Once I installed gcc the error was fixed.

Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!