I install Firebase CLI (firebase-tools) https://github.com/firebase/firebase-tools by this code:
curl -sL firebase.tools | bash
How to uninstall it totally?
firebase -V So you can basically run npm i -g firebase-tools to update the version of your firebase-tools installation to the latest version.
Go to your Firebase Extensions dashboard, then on the installed extension instance's card, click Manage. At the bottom of the screen, click Uninstall extension. Review what will be deleted, then click Uninstall extension to confirm the deletion.
You can type which firebase
on the command line and check the location. Then rm <location>
on mac the location is /usr/local/bin/firebase
Run:
npm uninstall -g firebase-tools
Just for people who installed firebase via
npm install -g firebase-tools
typing which firebase
and rm <location>
as in the first answer will not uninstall all components.
You should uninstall via
npm uninstall -g firebase-tools
as recommended in the second answer.
if you install firebase likecurl -sL https://firebase.tools | bash
Just use this to uninstall.curl -sL firebase.tools | uninstall=true bash
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With