0

I'm using linux live image. I'm facing problem with compilation as if I compile it by using g++, " bash: g++: command not found...". What to do know ! Please help me.

  • 5
    possible duplicate of [/bin/bash: g++: command not found error 127](http://askubuntu.com/questions/583171/bin-bash-g-command-not-found-error-127) – muru Aug 19 '15 at 00:59

1 Answers1

0

Are you sure you have g++ installed? Use the commands bellow to install g++, if you don't have it already:

sudo apt-get update
sudo apt-get install g++

And this question is kind of duplicate of this or this one.

Ali Torabi
  • 63
  • 7