zoukankan      html  css  js  c++  java
  • Centos7中一次性安装开发者工具

    这里使用组安装包,一次性安装所有开发者工具。

    1、查看有那些组安装包可用。

    yum grouplist | more

    2、搜索一下有哪些和development有关。

    yum grouplist | grep development

    查到以下内容:

    [root@noi ~]# yum grouplist | grep Development
    There is no installed groups file.
    Maybe run: yum groups mark convert (see man yum)
       Development and Creative Workstation
       Desktop Platform Development
       Development Tools
       Server Platform Development
    3、我们需要的就是Development Tools这个包。

    yum groupinstall "Development Tools"

    会一次安装很多常用的开发包,包括gcc,g++等编译文件必须的工具。

    4 单独安装gcc g++

    yum install gcc-g++

  • 相关阅读:
    HTML入门之003
    html入门之002
    HTML入门之001
    端口
    计算机基础
    二进制的学习
    markdown基础
    css基础
    html基础之三
    html基础之二
  • 原文地址:https://www.cnblogs.com/mingzhang/p/8974064.html
Copyright © 2011-2022 走看看