npm install error
1617295759 opened this issue · 3 comments
1617295759 commented
hmdadou commented
exactly the same problem
tolalitnegi commented
It worked for me with Node v10.x might work with 12 also as I saw some comment around bumping the version to 12. @hmdadou , @1617295759
NateNate60 commented
If anyone is still interested in the solution, you need to switch to Node 10. npm install
will fail if you use the latest version of Nodejs. You can do this using n
:
sudo npm install -g n # if you don't already have it
sudo n 10.16.2 # This is the version they used in the latest build & test
You can also use NVM if you want but I used n
.
This will result in successful compilation.