CentOS上安装软件错误提示:configure: error: no acceptable C compiler found in $PATH

configure: error: no acceptable C compiler found in $PATH See `config.log‘ for more details.你的机器里没有安装任何C语言编译器,可以安装gcc。 可以在安装盘里找到gcc相关的包进行安装,不过会比较繁琐,因为关联的包会比较多。 如果可以上网,使用yum安装是比较好的选择: yum install gcc因为是centos linux,默认可以采用yum方式安装,则采用如下命令安装gcc编译器即可:# yum -y install gcc
时间: 2024-10-22 06:44:14

CentOS上安装软件错误提示:configure: error: no acceptable C compiler found in $PATH的相关文章

configure: error: no acceptable C compiler found in $PATH 问题解决

今天在百度云的系统上安装python3 编译的时候提示 configure: error: no acceptable C compiler found in $PATH 问题解决 网上查了是 是缺少gcc yum install gcc 然后继续编译就可以了 原文地址:https://www.cnblogs.com/baker95935/p/9816310.html

centOS升级python2至python3过程中遇到configure: error: no acceptable C compiler found in $PATH

今天安装了一个centos 6.9  ,查看默认python版本是2.6,所以准备升级,按着以前在ubuntu上的升级步骤: (1)  wget http://www.python.org/ftp/python/3.3.0/Python-3.3.0.tgz (2)  tar -xzvf Python-3.3.0.tgz (3)  mkdir /usr/local/python (4) ./configure --prefix=/usr/local/python3 在第四步出现了一个提示: 提示:

configure: error: no acceptable C compiler found in $PATH

今天源码安装mysql遇到报错: checking for gawk... gawk checking whether make sets $(MAKE)... yes checking how to create a ustar tar archive... gnutar checking for style of include used by make... GNU checking for gcc... no checking for cc... no checking for cl.e

关于configure: error: no acceptable C compiler found in $PATH

Linux系统在安装python3的时候报错: p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px "Andale Mono"; color: #75b900 } span.s1 { } $ ./configure --prefix=/usr/local/python3 checking build system type... x86_64-unknown-linux-gnu checking host system type..

报错configure:error: no acceptable C compiler found in $PATH。。

查看日志: 出错原因:新安装的linux系统,没有gcc库 解决方案:使用yum install gcc,然后发现另外个坑,没有gcc 接着解决没有gcc: http://www.cnblogs.com/dieyaxianju/p/7582270.html

configure error no acceptable C compiler found in

[root@localhost ~]# cd msmtp-1.4.20 [root@localhost msmtp-1.4.20]# ./configure checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking target system type... i686-pc-linux-gnu checking for a BSD-compatib

CentOS 5.8上安装PHP软件提示“configure:error:no acceptable

问题: 在centos5.8上安装PHP软件包时,提示"configure:error:no acceptable cc found in $path". 原因: 这是缺少GCC编译器造成的,安装即可. 解决办法: 找到gcc的rpm包,安装即可.或者使用yum命令安装: # yum install gcc -y

nodejs安装错误Node.js configure error: No acceptable C compiler found!解决

Node.js configure error: No acceptable C compiler found! Please make sure you have a C compiler installed on your system and/or consider adjusting the CC environment variable if you installed it in a non-standard prefix. 检查两点: 1.你是否有C编译工具被安装在你的系统中,gc

转 Centos下安装apahce的configure: error: APR not found. Please read the documentation解决办法

转自: http://www.cnblogs.com/Anker/p/3355573.html 今天从Apache官网上http://httpd.apache.org/下载httpd web服务器,由于我的虚拟机上之前安装过,我先yum remove httpd进行卸载,然后重新安装.我采用的是源码安装,先进行./configure --prefix=/usr/local/apahce  --enable-so ,提示以下错误: configure: error: APR not found.