'Firebase CLI v7.0.0 is incompatible with Node.js v6.17.1 Please upgrade Node.js to version >= 8.0.0
I upgraded my Firebase CLI (firebase-tools) to version 7.0.0. Now, when I run it, it gives me a message:
Firebase CLI v7.0.0 is incompatible with Node.js v6.17.1 Please upgrade Node.js to version >= 8.0.0
How do I fix this?
Solution 1:[1]
You can simply uninstall your node js from your pc and download current latest version of node js from https://nodejs.org/en/download/current and than install it.
Solution 2:[2]
Problem:
Firebase CLI v11.0.0 is incompatible with Node.js v14.17.5
Please upgrade Node.js to version >= 14.18.0
just install,
- "npm install -g [email protected]"
- "firebase init"
- "firebase deploy" and it's solved.
Solution 3:[3]
The filename Nunito-Bold.eot? is causing your problem.
Presumably this repo is maintained on Linux (or Unix variant) where the question mark character (?) is allowed in files names, but you are cloning on an OS that doesn't allow the ? character in the filename (e.g. Windows). More info here about allowed characters.
Perhaps you can see about getting that file (and others if applicable) renamed, or else use another OS for the clone. (Consider WSL if you're on Windows.)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | |
| Solution 2 | Mansi |
| Solution 3 | TTT |
