wallet icon indicating copy to clipboard operation
wallet copied to clipboard

npm install error

Open 1617295759 opened this issue 3 years ago • 3 comments

Describe the bug When I want to run the desktop version, I get error when I run npm install And when i run npm run apply:bitpay , still errors

Screenshots image image

Desktop (please complete the following information):

my node version is v14.15.2

1617295759 avatar Jan 08 '22 02:01 1617295759

exactly the same problem

hmdadou avatar Jan 21 '22 09:01 hmdadou

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

tolalitnegi avatar Feb 21 '22 19:02 tolalitnegi

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.

NateNate60 avatar Mar 29 '22 05:03 NateNate60