Welcome

首页 / 操作系统 / Linux / Centos安装make

Centos安装make

CentOS 中无法使用make,make install 命令

提示错误:make: command not found

make是gcc的编译器,一定要安装

1、安装:

yum -y install gcc automake autoconf libtool make

2、安装g++:

yum install gcc gcc-c++