configure: error: Cannot find php-config. Please use --with-php-config=PATH ERROR: `/tmp/pear/temp/oci8/configure --with-oci8=instantclient,/usr/lib/oracle/19.12/client64/lib' failed
时间: 2023-07-07 07:43:41 浏览: 112
config。PHP
这个错误提示是在安装 OCI8 扩展时出现的错误,它说无法找到 `php-config` 命令,需要使用 `--with-php-config` 参数指定其路径。你可以尝试以下步骤解决该问题:
1. 确认你已经安装了 PHP 开发环境,如果没有,可以尝试安装 `php-dev` 包(Ubuntu/Debian 系统)或 `php-devel` 包(CentOS/RHEL 系统)。
2. 确认 `php-config` 命令的路径,你可以使用以下命令查找:
```
which php-config
```
如果能够找到,那么将输出 `php-config` 的路径,例如 `/usr/bin/php-config`。
3. 使用 `--with-php-config` 参数指定 `php-config` 命令的路径,例如:
```
pecl install oci8 --with-php-config=/usr/bin/php-config
```
注意将路径替换为你自己的 `php-config` 命令路径。如果 `pecl` 命令无法找到,你可以尝试安装 `php-pear` 包。
希望这些步骤能够帮助你解决问题。如果还有其他问题,请随时问我。
阅读全文