Installing build-essential On Ubuntu
The default repositories of Ubuntu come with a meta-package called "build-essential," which encompasses the GNU compiler collection, GNU debugger, and various development libraries and tools necessary for compiling software.
To install the Development Tools packages, execute the following command with root or sudo privileges:
$ sudo apt update
$ sudo apt install build-essential
Join the conversation