|
Probably you either don't have a C compiler installed or there is one installed, but it's not in your path.
Figure out where your C compiler is located using whereis or locate command. If you found one add its path to your existing PATH environment variable.
You can set the path using
setenv PATH $PATH:/path/to/cc
or
export PATH=$PATH:/path/to/cc
It depends on what shell your using.
|