Javascript required
Skip to content Skip to sidebar Skip to footer

How to Install Node Js Specific Version in Windows

5 Answers 5

Go here and find the version you want to install and then download the correct msi file and run the installer. You cannot install node by running this command, also the error you receive is stating that npm is not on your path which suggests machine doesn't currently have node installed on it

answered Nov 21 '15 at 23:14

7

  • I am having problems finding the correct MSI file. I need to downgrade the Node version. Version 6.6.0 is having problems with Webstorm.

    Sep 29 '16 at 7:39

  • I have updated link as it has changed, all older versions are there.

    Sep 29 '16 at 9:44

  • Updated link again, you need to click on the version number to find the msi you want.

    Oct 5 '17 at 22:25

  • When I try to install the MSI file ,it says "A later version of node is already install setup will now exit"

    Sep 25 '18 at 16:30

  • @Snedden27 if you want to install an older version of node you must uninstall the newer version before installing older version.

    Sep 27 '18 at 7:38

Just uninstall whatever node version you have in your system. Then go to this site https://nodejs.org/download/release/ and choose your desired version like for me its like v7.0.0/ and click on that go get .msi file of that. Finally you will get installer in your system, so install it. It will solve all your problems.

answered Feb 12 '19 at 10:13

2

  • 👍 Simple solution + good software management. Works as expected. *In terms of time, the nvm answer above is most efficient.

    Jun 28 '19 at 18:00

  • To uninstall Node in the first instance (on Windows at least) search in Start for "Uninstall Node.js" and run the pre-prepared script

    Jul 15 '20 at 15:12

For windows, best is: nvm-windows

1)install the .exe

2)restart (otherwise, nvm will not be undefined)

3)run CMD as admin,

4)nvm use 5.6.0

Note: You MUST run as Admin to switch node version every time.

answered Apr 11 '18 at 17:09

1

  • Works like charm, thx! Ionic sass builde does not working well on the latest node windows version 10.6

    Jul 6 '18 at 12:09

run:

npm install -g node@7.10.1

              - or whatever version you want after the @ symbol (This works as of 2019)                          

answered Jun 14 '19 at 19:17

You can use Nodist for this purpose. Download it from here.

Usage:

              nodist                         List all installed node versions. nodist list nodist ls  nodist <version>               Use the specified node version globally (downloads the executable, if necessary). nodist latest                  Use the latest available node version globally (downloads the executable, if necessary).  nodist add <version>           Download the specified node version.                          

More Nodist commands here

answered Sep 6 '17 at 11:34

Not the answer you're looking for? Browse other questions tagged node.js installation npm or ask your own question.

How to Install Node Js Specific Version in Windows

Source: https://stackoverflow.com/questions/33849714/how-to-install-older-version-of-node-js-on-windows/49780887