Linux 安装 PHP 出错 no acceptable C compiler found in $PATH when installing php
问题描述
在 Linux 下安装 PHP 时,报错了,具体步骤如下:
$ wget https://www.php.net/distributions/php-7.4.6.tar.gz
$ tar xf php-7.4.6.tar.gz
$ cd php-7.4.6
$ ./configure --prefix=/develop/opt/php-7.4.6 --enable-fpm --with-pdo-mysql
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for a sed that does not truncate output... /usr/bin/sed
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for cc... no
checking for gcc... no
configure: error: in `/home/test/Downloads/package/php-7.4.6':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details
解决方法
gcc
编译器不在 $PATH
中,这意味着系统没有安装 gcc
或不在 $PATH
变量中。
可以安装开发工具,开发工具中包含有 gcc
编译器。
- RHEL / CentOS
安装开发工具
sudo yum groupinstall "Development Tools"
或者单独安装 gcc
sudo yum install gcc
- Ubuntu / Debian
sudo apt-get install build-essential
非特殊说明,本网站所有文章均为原创。如若转载,请注明出处:https://mip.cpming.top/p/no-acceptable-c-compiler-found-in-path