My question is: how to install gcc and g ++ in GNU / Linux (ubuntu)
I would like to know the installation command specifically, and the installation step by step. : D
My question is: how to install gcc and g ++ in GNU / Linux (ubuntu)
I would like to know the installation command specifically, and the installation step by step. : D
In Ubuntu you can do:
sudo apt-get install gcc
and
sudo apt-get install g++
That will activate the two packages (both are part of gcc
).