How do you uninstall Bower (the package manager)?

bower, bower-install, package-managers, uninstallation

Solution

To uninstall global package :

npm uninstall -g bower

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

Problem

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

Original source

Related problems