I want to install node 6.9.4.
In windows console I try with this:
npm install [email protected] And it throws this error:
npm ERR! No compatible version found: [email protected] npm ERR! Valid install targets: npm ERR! 0.0.0 In linux the result is similar. I try with
sudo npm install [email protected] and the output is:
npm ERR! version not found: [email protected] Is there a way to install certain node version with npm?
npm install -g npmand then try to install node again?