您的位置:首页 > 运维架构 > Linux

Linux下安装php的pear和pecl

2013-06-18 10:16 411 查看
参考链接:
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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: