I have Ubuntu 16.04 and want to install C++ free compilator what shall I write in terminal?
Asked
Active
Viewed 579 times
1 Answers
0
The most important stuff will get installed as a dependency for the package build-essential. To install it, open a terminal (dash -> terminal) and run the following command:
sudo apt install build-essential
The c++ compiler is called g++ and you should find plenty of howto's and tutorials on the internet.
One of my favorite sources for those stuff is https://learnxinyminutes.com/ where you can find multiple short tutorials to get you started in nearly every programming language.