如果返回版本信息,说明编译器已正确安装并配置。 按照这些步骤操作后,你应该能够解决 configure: error: no acceptable c compiler found in $PATH 的问题。如果问题仍然存在,可能需要检查其他系统配置或依赖问题。
当您遇到“python configure: error: no acceptable C compiler found inPATH”错误时,这意味着系统无法找到可接受的C编译器。您可以通过安装适合的C编译器,并将其添加到系统的环境变量PATH”错误时,这意味着系统无法找到可接受的C编译器。您可以通过安装适合的C编译器,并将其添加到系统的环境变量PATH中来解决这个问...
./configure --prefix=/usr/local/zabbix --enable-agent no acceptable C compiler found in $PATH,代表你没有安装C编译器 解决办法如下: 安装GCC软件套件
no acceptable C compiler found in $PATH,代表你没有安装C编译器 执行yum -y install gcc-c++命令进行安装,安装完后,输入gcc -v检查是否安装成功,出现下图所示代表安装c编译器成功。
Ubuntu-Error: no acceptable C compiler found in $PATH 需要安装GCC: 1、安装: sudo apt-get build-dep gcc 1. 或者: sudo apt-get install build-essential 1. 2、查看版本: gcc --version 1. 作者:꧁执笔小白꧂
1 configure编译提示no acceptable C compiler found in $PATH,这种错误一般就是缺失gcc导致的。安装gcc编译环境 1 首先我们需要下载安装gcc,需要使用在线yum源,所有要确保机器可以访问到互联网 2 使用命令:yum install gcc安装,或者 yum -y install gcc这样就直接安装不需要交互是否继续。3 交换界面输入y继续...
新安装的 Ubuntu 系统在执行 ./configure 编译软件时会提示如下错误消息: configure: error: no acceptable C compiler found in $PATH 这是没有安装 C 编译器,在 Ubuntu 系统下可以执行以下命令来安装 C 编译环境: sudo apt-get install -y build-essential ...
CentOS 6.2报no acceptable C compiler found in $PATH的解决办法 configure: error: no acceptable C compiler found in $PATH 因为是centos linux,默认可以采用yum方式安装,则采用如下命令安装gcc编译器即可: # yum -y install gcc
用GCC编译GCC?那你得先有GCC二进制。提示很明显啊,没有编译器,默认系统$PATH中有cc编译器,一般是指向gcc的。你肯定没装编译开发环境,如果是ubuntu,那么apt install build-essential,其他缺什么装什么。 但是编译GCC之前,还有几个依赖,gmp, mpc, mpfr 等,所以你得先编译这几个。还有,你编译...
configure: error: no acceptable C compiler found in $PATH 问题解决。 一、错误发生情景: 使用./configure命令时,报如下错误: . . . configure: error: no acceptable C compiler foundin$PATH See'config.log'formoredetails. 二、错误原因: 缺少gcc编译器。