Question

How do you uninstall Bower? I mean the package manager, not the packages (that I have already uninstalled).

Was it helpful?

Solution

To uninstall global package :

npm uninstall -g bower

See this thread : how to uninstall npm modules in node js?

OTHER TIPS

sudo npm uninstall -g bower

Sudo: to do it as an superUser/administrator

-g : to try it globally

sudo npm uninstall -g bower
sudo npm remove -g bower
sudo npm rm -g bower

npm Uninstall aliases remove, rm, r, un, unlink reference

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top