Centos 7 安装 nginx安装,提示:c compiler cc is not found

在VMware 中安装Centos7后,准备安装nginx-1.10.3

将nginx-1.10.3.tar.gz,解压之后,进入nginx-1.10.3目录,准备安装,执行make && make install,

系统提示如下信息:

checking for OS
 + Linux 4.4.0-127-generic x86_64
checking for C compiler ... not found

./configure: error: C compiler cc is not found

查了下网上的资料,解决方案也不复杂。

原因是因为缺少 gcc-c++ 的包

解决办法很简单,执行:yum -y install gcc-c++

Centos 7 安装 nginx安装,提示:c compiler cc is not found

在执行上诉命令过程中,可能因为网络问题导致下载相关依赖包失败,可以尝试多试几次,我最后是通过链接手机wifi才下载安装成功的。

安装成功之后,执行命令:cd nginx-1.10.3 && ./configure --prefix=/usr/local/nginx 检查一下

Centos 7 安装 nginx安装,提示:c compiler cc is not found

出现这个说明,nginx安装环境没问题,准备开始安装nginx,执行make && make install

安装完成之后,启动nginx,命令:/usr/local/nginx/sbing/nginx 

输入:curl http://localhost 

Centos 7 安装 nginx安装,提示:c compiler cc is not found

nginx 安装成功!

上一篇:vue源码学习(一)目录


下一篇:java – 使用CustomListAdapter时的NullPointerException