stan wrote:
yum install development-group development-libs
I realized I made an error in this command. It should be
yum groupinstall development-tools development-libs
As a slight tangent, you can use install with groups, you just need to prefix them with the @ symbol, e.g.:
yum install @development-group @development-libs
(Or for the lazy bash types: yum install @development-{group,lib} ;)