vote up 0 vote down star

What is the command to uninstall a pear package?

flag

69% accept rate

4 Answers

vote up 0 vote down

If your on a RPM Linux Distro, it's simple with YUM

yum remove php-pear*

link|flag
vote up 0 vote down
pear help

is the best ;)

link|flag
vote up 0 vote down
pear uninstall [options] [channel/]<package>

So if you wanted to uninstall PHPUnit

pear uninstall phpunit/PHPUnit

Note: remember to preface with sudo or you won't have permission to uninstall anything.

link|flag
Assuming you installed pear into a root only location. It's possible to setup pear to use your local user account (something like ~/PEAR) in which case the sudo isn't needed. – Alan Storm Oct 14 at 22:15
vote up 0 vote down

pear uninstall package_name

You can read about it here in the PHP Cookbook

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.