Why isn't Node Version Manager (NVM) recognized on Windows?

node.jsNpmNvm

node.js Problem Overview


I am trying to downgrade my version of node

I ran:

npm install nvm

and I exported the bin folder to my Windows path variable,

C:\Program Files (x86)\nodejs\node_modules\npm\bin

but I still get:

> 'nvm' is not recognized as a an internal or external command.

Should I be adding another path to my path variable?

node.js Solutions


Solution 1 - node.js

nvm was designed for Linux. nvmw, which is completely different, broke around node v0.10.30. Try NVM for Windows.

Solution 2 - node.js

Nvm can be used to manage various node version :

  • Step1: Download nvm for Windows

  • Step2: Choose nvm-setup.zip

  • Step3: Unzip & click on installer.

  • Step4: Check if nvm properly installed, In new command prompt type nvm

  • Step5: Install node js using nvm : nvm install <version> : The version can be a node.js version or "latest" for the latest stable version

  • Step6: check node version - node -v

  • Step7(Optional)If you want to install another version of node js - Use STEP 5 with different version.

  • Step8: Check list node js version - nvm list

  • Step9: If you want to use specific node version do - nvm use <version>

Solution 3 - node.js

NVM Installation & usage on Windows

Below are the steps for NVM Installation on Windows:

NVM stands for node version manager, which will help to switch between node versions while also allowing to work with multiple npm versions.

  • Install nvm setup.
  • Use command nvm list to check list of installed node versions.
  • Example: Type nvm use 6.9.3 to switch versions.

For more info

Solution 4 - node.js

As an node manager alternative you can use Volta from LinkedIn.

Solution 5 - node.js

I created a universal nvm that works on both Unix (bash) and Windows, base on another simple nvm.

It doesn't need admin on Windows, but requires PowerShell 4+ and the right to execute scripts.

https://www.npmjs.com/package/@jchip/nvm#installation

Solution 6 - node.js

The first thing that we need to do is install NVM.

  1. Uninstall existing version of node since we won’t be using it anymore
  2. Delete any existing nodejs installation directories. e.g. “C:\Program Files\nodejs”) that might remain. NVM’s generated symlink will not overwrite an existing (even empty) installation directory.
  3. Delete the npm install directory at C:\Users[Your User]\AppData\Roaming\npm We are now ready to install nvm. Download the installer from https://github.com/coreybutler/nvm/releases

To upgrade, run the new installer. It will safely overwrite the files it needs to update without touching your node.js installations. Make sure you use the same installation and symlink folder. If you originally installed to the default locations, you just need to click “next” on each window until it finishes.

Credits Directly copied from : https://digitaldrummerj.me/windows-running-multiple-versions-of-node/

Solution 7 - node.js

1.downlad nvm 
2.install chocolatey
3.change C:\Program Files\node   to C:\Program Files\nodejsx

emphasized textThe first thing that we need to do is install NVM. website : https://docs.microsoft.com/en-us/windows/nodejs/setup-on-windows

Solution 8 - node.js

I will list two ways. You can choose one Whichever works for you.

1. Using installer

Download nvm-setup.zip and unzip the file and install it, keeping the configurations default.

1. Use curl Copy the below command and run it in your terminal

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash

After this reopen/open terminal and check the nvm version runing below command.

nvm -v

And that's it.

Solution 9 - node.js

So this answer is for windows users that are using git bash or some other console emulator like cmder ... if you're using CMD this solution will not work for you also why? why are you still using CMD?

I know this is a pretty old post but I just achieved this yesterday and wanted to add my answer for anyone looking to do the same.

  • First check if you have .bashrc profile in your home directory by typing ls -alh ~ (by default this doesn't exist)
  • if it doesn't exist type this command to generate a .bashrc profile with default values in it cat /etc/bash.bashrc > ~/.bashrc (if it does exist skip this step)
  • Download and run the nvm install script as provided in the nvm docs page curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash (make sure you do this in your home directory)
  • then edit the new generated .bashrc profile file you created above; use nano/vim to do that nano ~/.bashrc and add the following to the bottom of the file export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm and save your .bashrc file with the changes.
  • lastly source your .bashrc file by typing source ~/.bashrc
  • verify installation nvm --version

and now you have nvm installed and you can use the commands as per https://github.com/nvm-sh/nvm#usage

Solution 10 - node.js

First off, I use nvm on linux machine.

When looking at the documentation for nvm at https://www.npmjs.org/package/nvm, it recommendations that you install nvm globally using the -g switch.

npm install -g nvm

Also there is a . in the path variable that they recommend.

export PATH=./node_modules/.bin:$PATH

so maybe your path should be

C:\Program Files (x86)\nodejs\node_modules\npm\\.bin

Solution 11 - node.js

An alternative to nvm-windows, which is mentioned in other answers would be Nodist.

I've had some issues with nvm-windows and admin privileges, which Nodist doesn't seem to have.

Solution 12 - node.js

I know I'm late here but this may help in the future if someone looking for NVM to install in Windows or linux
run this command in cmd

       $ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAlexander MillsView Question on Stackoverflow
Solution 1 - node.jsCoreyView Answer on Stackoverflow
Solution 2 - node.jsRitu GuptaView Answer on Stackoverflow
Solution 3 - node.jsShrinivas KalangutkarView Answer on Stackoverflow
Solution 4 - node.jsClaudiuView Answer on Stackoverflow
Solution 5 - node.jsJoel ChenView Answer on Stackoverflow
Solution 6 - node.jsnilakantha singh deoView Answer on Stackoverflow
Solution 7 - node.jsfahimeh ahmadiView Answer on Stackoverflow
Solution 8 - node.jsMustkeem KView Answer on Stackoverflow
Solution 9 - node.jsNeenusView Answer on Stackoverflow
Solution 10 - node.jsuser3834928View Answer on Stackoverflow
Solution 11 - node.jsDavid DostalView Answer on Stackoverflow
Solution 12 - node.jsvibhuView Answer on Stackoverflow