0

I'm trying geany to run my c++ program but it doesn't work. An error saying "g++ is not recognized an internal or external command, operable program or batch file" comes when built. What i have missed??

Columbo
  • 60,038
  • 8
  • 155
  • 203
njay
  • 79
  • 10

1 Answers1

2

Probably you don't have g++ installed on your computer. Open Terminal and write : sudo apt-get install g++ (assuming you are working on linux)

Berke Cagkan Toptas
  • 1,034
  • 3
  • 21
  • 31
  • http://www.geany.org/Support/RunningOnWindows .Checkout this webpage. At the bottom page it redirects you to a webpage where you can install it. – Berke Cagkan Toptas Nov 16 '14 at 14:42