Centos中無法使用make,make install,命令 make: command not found
一般出現這個-bash: make: command not found提示,
是因為安裝系統的時候使用的是最小化mini安裝,
系統沒有安裝make、vim等常用命令,直接yum安裝下即可。
yum -y install gcc automake autoconf libtool make
直接ssh運行即可,安裝make。
-------------------------------------------------------
安裝:
yum -y install gcc automake autoconf libtool make
安裝g++:
yum install gcc gcc-c++