I have Ubuntu 16.04 and want to install C++ free compilator what shall I write in terminal?
Asked
Active
Viewed 574 times
0
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.
-
https://learnxinyminutes.com/ 's SSL certificate is not valid anymore since today. This might hopefully be solved soon. – Phillip -Zyan K Lee- Stockmann Nov 11 '16 at 20:46
-
Thank you so much Phillip. Now I can trust that line I found it too but I was insecure. If anyting failiures I will look back on your answer and think all will be fine! Thank´s again Sonja – sonja eimar Nov 11 '16 at 20:49
sudo apt install g++
– Phillip -Zyan K Lee- Stockmann Nov 11 '16 at 20:22