Developer Tools – How to Install Commonly Used Developer Tools

application-developmentdevelopmentmetapackages

Is there a meta-package for installing commonly used developer tools such as cmake, autoconf, g++, etc.? The intent is to have roughly the same range of command-line tools as one has after installing XCode and the Mac SDK on Apple.

Best Answer

build-essential is the main one that springs to mind.

sudo apt-get install build-essential
Related Question