Ubuntu – Code::Blocks: g++ not found

ccode-blockscompiling

Recently I have installed Code::Blocks IDE on my Ubuntu 12.10. The following error appears when I try to run or compile any code written in there:

Compiling: /home/sabbir/first.cpp
/bin/sh: 1: g++: not found
Process terminated with status 127 (0 minutes, 0 seconds)
0 errors, 0 warnings

How can I solve this problem?

Best Answer

Most likely you are simply missing a compiler.

Get one by installing build-essential package.

Typing sudo apt-get install build-essential into terminal is one of the easiest ways to achieve that.

Related Question