Pear install for macports PHP5

2022-08-30 21:57:13

我通过 /opt/local/ 中的 macports 安装了 PHP5。macports 的默认位置。没有梨的端口文件。如果我从 pear 站点进行标准 pear 安装,应该将 pear 放在哪个目录位置才能使用 PHP?


答案 1

虽然 curl 选项有效,但它不会在您更新端口时更新。另一种选择:

sudo port install php5 +pear

这将安装带有pear的php5的变体,与上面的下载位置相同,并且它会随着您更新macports而更新。


答案 2

我刚才遇到了类似的问题,并去你提到的目录中安装PEAR。

curl -O http://pear.php.net/go-pear.phar
sudo php go-pear.phar

我将安装基目录($prefix)更改为指向 /opt/local 并运行安装程序。它修改了我的php.ini文件以包含PEAR路径。

我的 bash 路径已经包含 /opt/local/bin,所以 PEAR 刚刚工作了!


推荐