[总结]Linux下安装php的pear和pecl

参考链接: Linux上安装php的pear

首先下载安装脚本, 使用curl下载, wget也可以, 如果没有这两个命令请自行安装:

cd /usr/local/php/bin/
curl -o go-pear.php http://pear.php.net/go-pear
curl -o go-pear.php http://pear.php.net/go-pear.phar # 如果你的php版本高于php5.3, 执行这条

安装:

php go-pear.php # 回车, 会提示选择安装的东西, 直接回车, 安装全部, 若后面有要选择y/n的, 输入y回车

如果看到下面的一段话就是安装成功:

Run it without parameters to see the available actions, try 'pear list'
to see what packages are installed, or 'pear help' for help.

For more information about PEAR, see:

  http://pear.php.net/faq.php
  http://pear.php.net/manual/

Thanks for using go-pear!

写这个的原因是因为想尝试自己编译php手册, 其中有用到pear.

另外建议把php/bin加入到PATH去, centos下:

vi /etc/profile # 在最后加入如下
PATH=.:$PATH:/usr/local/php/etc:/usr/local/php/bin
export PATH

标签: php, centos, pear, pecl, path

添加新评论