Installing PEAR on OSX
http://androidren.com/index.php?qa=278&qa_1=installing-pear-on-osx
PEAR is a poplular PHP package manager, it doesn’t come by default on OSX, how to install PEAR on OSX 10.9 Mavericks and earlier versions of OSX.
Check if you have it
pear version
If not, move into:
cd /usr/local
Get it (一定要注意啊,curl -O,这里是大写的O,不是零。)
curl -Ohttp://pear.php.net/go-pear.phar
if you are denied permission try it withsudo
sudo curl -Ohttp://pear.php.net/go-pear.phar
Install It
sudo php -d detect_unicode=0 go-pear.phar
Click yes a couple of times during the install
Add PEAR to your PATH (有的时候,不需要添加这个path,因为他和系统的一起了,比如:/usr/bin/ 。这时候,你直接进入pear version,进行验证就好)
cd vi .bashrc
or
vi .bash_profile
Add to your PATH variable:
/Users/USERNAME/pear/bin
So the PATH variable line will look something like this, each path is separated by a colon and finished with the variable $PATH, in the example below thepearpath is the 2nd one
export PATH="/usr/local/mysql/bin:/Users/USERNAME/pear/bin:$PATH"
Refresh
source .bash_profile
Verify
pear version
Output should be
PEAR Version: 1.9.4 PHP Version: 5.4.17 Zend Engine Version: 2.4.0 Running on: Darwin admins-MacBook.local 13.0.0 Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64 x86_64
pear upgrade pear
pear upgrade
装完pear后,其实pecl就已经包含了。