liunx perl Makefile.PL MP_APXS=/usr/sbin/httpd error] '/usr/sbin/httpd -q INCLUDEDIR' failed:
时间: 2023-09-01 19:07:23 浏览: 152
CLBlast:调优的OpenCL BLAS库-C/C++开发
这个错误通常是因为你的系统中缺少 Apache 开发包导致的。你可以尝试安装 Apache 的开发包来解决这个问题。具体方法取决于你所使用的 Linux 发行版,以下是一些常见的发行版的解决方法:
- Debian / Ubuntu
```
sudo apt-get install apache2-dev
```
- CentOS / Fedora / RHEL
```
sudo yum install httpd-devel
```
- OpenSUSE
```
sudo zypper install apache2-devel
```
安装完开发包后,再次运行 `perl Makefile.PL` 命令即可。
阅读全文