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?
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?
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
sudo rm -rf /usr/local/bin/firebase
–
Inglis hash -r
to rebuild the index of executables, otherwise you might get -bash: /usr/local/bin/firebase: No such file or directory
–
Mutineer If you install firebase like
curl -sL https://firebase.tools | bash
Just use this to uninstall.
curl -sL firebase.tools | uninstall=true bash
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.
© 2022 - 2025 — McMap. All rights reserved.