I want to install node 6.9.4.
In the windows console, I try:
npm install node@v6.9.4
And this causes this error:
npm ERR! No compatible version found: node@v6.9.4
npm ERR! Valid install targets:
npm ERR! 0.0.0
On linux, the result is similar. I'm trying with
sudo npm install node@v6.9.4
and output:
npm ERR! version not found: node@6.9.4-cls
Is there a way to install a specific version of node with npm?
source
share