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
simon-p-rsimon-p-r
3,113 1 gold badge 18 silver badges 33 bronze badges
7
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
Alok RanjanAlok Ranjan
669 8 silver badges 9 bronze badges
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
hoogwhoogw
3,954 1 gold badge 28 silver badges 30 bronze badges
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
Dixon YantDixon Yant
107 1 silver badge 3 bronze badges
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
DarushDarush
10.1k 8 gold badges 55 silver badges 56 bronze badges
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
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