up vote 7 down vote favorite
1
share [g+] share [fb]

What is the command to uninstall a pear package?

link|improve this question

68% accept rate
feedback

3 Answers

up vote 9 down vote accepted
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|improve this answer
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 '09 at 22:15
feedback

pear uninstall package_name

You can read about it here in the PHP Cookbook

link|improve this answer
feedback

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

If you installed a PEAR package with YUM you can uninstall with YUM as well.

yum install php-pear-db 

to install and

yum remove php-pear-db

to remove.

link|improve this answer
The question is: how to uninstall a PEAR package, PEAR is a repository of packages. You're answering the question how to uninstall the PEAR package, which is a piece of Linux software. – Niels Bom Nov 18 '11 at 10:12
@NielsBom Yes I understand the difference but some of PEAR's packages can be install with YUM/Apt-Get/etc.. (Other packet managers). So yum remove php-pear* should remove any Pear packages that were install with YUM. – Phill Pafford Nov 18 '11 at 14:24
And how would you then uninstall a specific PEAR package using this command? – Niels Bom Nov 21 '11 at 14:19
Again let me stress, if you installed a PEAR package with YUM you can uninstall with YUM as well. yum install php-pear-db to install yum remove php-pear-db to remove. The OP never states how they installed the Pear Package this is why I said IF you're on a RPM Linux Distro – Phill Pafford Nov 21 '11 at 14:22
I've edited your answer to include part of your last comment. – Niels Bom Nov 21 '11 at 14:52
feedback

Your Answer

 
or
required, but never shown

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