安装python2.7的时候,提示我没有C编译器,只需要安装gcc即可
$ sudo apt-get install gcc
安装完GCC之后,可以configure,但是make的时候还会提示错误:bash: make: command not found
这是因为没有安装make,
$ sudo apt-get install make
安装python2.7的时候,提示我没有C编译器,只需要安装gcc即可
$ sudo apt-get install gcc
安装完GCC之后,可以configure,但是make的时候还会提示错误:bash: make: command not found
这是因为没有安装make,
$ sudo apt-get install make
相关推荐
configure: error: no acceptable C compiler found in $PATH ------------------------ linux 中,安装,提示缺少其他一些组件,经过来回搜索与拷贝,GCC安装成功,所需文件有: libf2c-3.3.2-1.i386.rpm libstdc -devel...
如编译报错提示:configure:3414: error: no acceptable C compiler found in $PATH yum -y install gcc ./configure && make && make install 安装完成后 [root@localhost rlwrap-0.42]# which rlwrap /usr/local/...
问题1:`configure: error: no acceptable C compiler found in $PATH` 解决方法:这个错误意味着系统中没有可用的C编译器。要解决这个问题,你需要安装GCC及其依赖包,使用`yum -y install gcc`命令。 问题2:`...
5. 如果在配置过程中遇到“no acceptable C compiler found in $PATH”的错误,是因为缺少开发工具包,需要安装`development tools`,包括`gcc`等编译器。 6. 完成安装:`make`,然后`make install` 接下来,初始化...
2. configure: error: no acceptable C compiler found in $PATH 原因:未安装gcc编译器. 在命令行里敲入gcc –v, 如果提示command not found 就表示你的系统里没有安装gcc编译器 解决办法:yum install gcc ...
安装wget yum -y install wget 创建一个download目录用于下载各种安装包 mkdir download 切换到刚创建的download目录中 cd download ...注意,我这里报错:no acceptable C compiler found in $PATH 这
- 如果出现 “no acceptable C compiler found in $Path” 的错误,可通过 `yum install gcc` 命令安装GCC。 - **PCRE库问题** - 若提示 “pcre-config for libpcre not found”,则需下载并安装PCRE库至 `/usr/...
在此过程中可能会遇到`no acceptable c compiler found in $PATH`的问题,这通常是由于系统未安装GCC导致的。可以通过以下命令解决: ```bash # 安装 GCC yum install gcc* make* # 检查 libevent 是否已成功...
1. **错误:configure: error: no acceptable C compiler found in $PATH** 缺少GCC编译环境。安装GCC即可: ```bash yum install -y gcc ``` 2. **错误:zipimport.ZipImportError: can't decompress data*...
7. 如果在执行上一步骤时遇到`configure: error: no acceptable C compiler found in $PATH`的错误,说明需要安装GCC编译器。执行以下命令安装GCC: ``` yum -y install gcc ``` 如果安装GCC时出现依赖问题,如...
如果出现错误提示`configure: error: no acceptable cc found in $PATH`,这意味着系统中没有找到合适的C编译器。在这种情况下,需要安装GCC。 5. **安装GCC**:在CentOS或RHEL等系统中,可以使用`yum install gcc`...