web-dev-qa-db-fra.com

Je ne peux pas compiler un programme C ++ avec la commande g ++

Si j'essaie de compiler mon fichier source C++ à l'aide de la commande suivante:

g++ a.cpp

il produit:

The program 'g++' can be found in the following packages:
 * g++
 * pentium builder

try:
Sudo apt-get intsall <<a>selected package>

Cependant, si j'exécute la commande suggérée (Sudo apt-get install g++), cela indique que tout est déjà installé.

En résumé, comment compiler un programme C++ simple dans Ubuntu 12.04?

4
shreya

Essaye ça

Sudo apt-get update

Sudo apt-get install build-essential

6
Tachyons