当你在配置或安装某些软件时遇到“configure: error: no acceptable c compiler found in”的错误时,通常表示系统未能找到可用的C编译器。以下是一些解决此问题的步骤: 确认系统环境是否已安装C编译器: 对于大多数Linux发行版,常用的C编译器是GCC(GNU Compiler Collection)。你可以通过运行以下命令来检查GCC是否已安...
./configure --prefix=/usr/local/zabbix --enable-agent no acceptable C compiler found in $PATH,代表你没有安装C编译器 解决办法如下: 安装GCC软件套件
configure: error: no acceptable C compiler found in $PATH 参考链接: configure: error: no acceptable C compiler found in $PATH 问题解决。 一、错误发生情景: 使用./configure命令时,报如下错误: . . . configure: error: no acceptable C compiler foundin$PATH See'config.log'formoredetails. 二、错...
当您遇到“python configure: error: no acceptable C compiler found inPATH”错误时,这意味着系统无法找到可接受的C编译器。您可以通过安装适合的C编译器,并将其添加到系统的环境变量PATH”错误时,这意味着系统无法找到可接受的C编译器。您可以通过安装适合的C编译器,并将其添加到系统的环境变量PATH中来解决这个问...
新安装的 Ubuntu 系统在执行 ./configure 编译软件时会提示如下错误消息: configure: error: no acceptable C compiler found in $PATH 这是没有安装 C 编译器,在 Ubuntu 系统下可以执行以下命令来安装 C 编译环境: sudo apt-get install -y build-essential ...
安装gcc时,提示 configure: error: no acceptable C compiler found in $PATH 问题原因:系统没有可使用的gcc程序 解决办法:安装一个可使用的gcc
configure: error: no acceptable C compiler found in $PATH 原因是没装gcc [root@nginx pcre-8.20]# ./configure checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p ...
0.9.0... yes checking for gcc... no checking for cc... no checking for cl.exe... no configure: error: in `/usr/local/keepalived-2.0.15':configure: error: no acceptable C compiler found in $PATH See `config.log' for more details 解决:根据报错安装gcc包 yum install gcc ...
configure: error: no acceptable C compiler found in $PATH 执行make后, 提示:No targets specified and no makefile found.Stop. 执行make install后 提示:No rule to make target 'install'.Stop. 经过查阅资料,发现是因为没有安装GCC组件的原因; ...
1、问题解析 报错信息中有这样一条:configure: error: no acceptable C compiler found in $PATH即:配置错误,在$path中找不到可接受的C编译器 2、解决方式 安装C编译器gcc(GNU编译器套件): yum -y install gcc 3、扩展 gcc即:GNU编译器套件(GNU Compiler Collection)包括C、C++、Objective-C、Fortran、Java...