Self-paced

Explore our extensive collection of courses designed to help you master various subjects and skills. Whether you're a beginner or an advanced learner, there's something here for everyone.

Bootcamp

Learn live

Join us for our free workshops, webinars, and other events to learn more about our programs and get started on your journey to becoming a developer.

Upcoming live events

Learning library

For all the self-taught geeks out there, here is our content library with most of the learning materials we have produced throughout the years.

It makes sense to start learning by reading and watching videos about fundamentals and how things work.

Search from all Lessons


LoginGet Started
← Back to How to's
Edit on Github

How to install NVM on Windows

Written by:

As a developer, you'll likely encounter the need to juggle multiple Node.js projects in your local development environment, each requiring different versions of Node.js. To manage these requirements efficiently, we strongly recommend installing Node Version Manager (NVM) instead of directly installing Node.js. NVM allows you to switch between Node versions seamlessly, ensuring that each project has the right environment to run effectively. For those interested in optimizing their development setup further, we have an article detailing the best local development practices to help you avoid common issues in the future.

πŸ“ This guide is for Windows users only, follow these links if you want to install NVM on MacOS or install NVM on linux.

1) Download NVM for Windows.

In order to install Node Version Manager tool in Windows environment can download the latest version zip file from the following list of official version.

πŸ”₯ Make sure to download the ZIP file because it contains a very simple installation wizard.

2) Install NVM on your Windows Computer

Go to your Downloads folder on Windows, and unzip nvm-setup.zip file and double click on nvm-setup.

3) Follow the installation wizard

When the installation wizard opens, hit the next button a bunch of times, and at the end you will see an install button that you will hit too. After that, just wait for the progress bar to finish.

☝️ ?? Remember not to touch any default configuration. Always keep hitting next!!!

4) Find it on your command Prompt

Once it is installed, open Windows Command Prompt. If you have any issues finding the command line, just type CMD in Windows search bar at the bottom-left corner of your desktop.

Type nvm and hit enter on your command prompt and you should see a message similar to this one:

nvm windows installation success

5) Install Node version 12 or whatever version you want

If you want to check what are the current node versions available you can type: nvm list available or you can go to nodejs.org and check all of them.

We would recommend using the latest stable version, for example Node v22 when writing this article. In the command prompt type the command below:

1nvm install 22

6) Checking installed node versions

Always check your installed node versions. Sometimes our applications do not run because we are using outdated versions. This command will show all the installed node versions you have in Windows.

1$ nvm list

7) Changing between different node versions:

You can always use different node versions and this command line let us jump between all our installed versions.

1# for node 8 2nvm use 8.15.0 3# for node 10 4nvm use 10.15.1

Possible errors and troubleshooting

Here's a list of common problems you might encounter while installing NVM (Node Version Manager) on Windows, along with solutions for each:

1. Command Not Found Error After Installation

Problem: 😱 After successfully installing NVM, you might encounter an issue where running nvm commands results in a command not found error. Solution: 😎 This usually occurs because the NVM path has not been correctly added to the system's environment variables. You can manually add the NVM directory to your PATH by:

  • Right-clicking on 'This PC' or 'My Computer'.
  • Selecting 'Properties'.
  • Clicking on 'Advanced system settings'.
  • In the 'System Properties' window, click on 'Environment Variables'.
  • In the 'System variables' section, find and select the 'Path' variable and click 'Edit'.
  • Add the path to your NVM installation, typically C:\Users\<Your-Username>\AppData\Roaming\nvm.
  • Click 'OK' to save your changes and close all remaining windows.

2. Installer Fails to Set Environment Variables

Problem: 😱 Sometimes, even if the installation completes successfully, NVM might not work because the installer fails to set the necessary environment variables. Solution: 😎 Verify that the environment variables have been set correctly. If not, manually add NVM_HOME and NVM_SYMLINK to your system's environment variables:

  • NVM_HOME should point to the directory where NVM is installed.
  • NVM_SYMLINK should point to the directory where Node installations will be placed.
  • Make sure to also add these to the 'Path' variable as described above.

3. Access Denied During Installation

Problem: 😱 Installation fails with an 'Access Denied' error message. Solution: 😎 This can occur if you do not have administrative privileges on your computer. Try running the installer as an administrator by right-clicking on the installer and selecting 'Run as administrator'.

4. Issues with Installing Specific Node Versions

Problem: 😱 After NVM is installed, attempting to install certain Node versions fails. Solution: 😎 This can happen due to network issues or if the Node version specified is incorrect. Ensure you have a stable internet connection and verify the version number. Also, try installing another version to check if the problem is specific to one version. Sometimes, running the command prompt as an administrator helps.

5. nvm is not recognized as an internal or external command

Problem: 😱 This error typically appears if the command prompt was open during the installation and hasn’t been restarted, or the PATH hasn't been updated properly. Solution: 😎 Close and reopen your command prompt or restart your computer to ensure all environmental changes take effect. Double-check the PATH settings as described in the solutions for 'Command Not Found Error After Installation'.

6. Inability to Switch Node Versions

Problem: 😱 NVM installs and lists Node versions correctly, but switching between them doesn’t seem to work. Solution: 😎 Make sure that when you install Node versions via NVM, you’re running the command prompt as an administrator. Sometimes, permissions issues can prevent NVM from modifying the symlinks properly.

7. Slow Performance on Windows

Problem: 😱 NVM can sometimes be noticeably slower on Windows compared to Unix systems. Solution: 😎 This is a known issue due to how environment variables and paths are managed on Windows. Minimizing the number of Node versions installed and rebooting the system after making significant changes can sometimes help.

These solutions address the most common issues faced when installing NVM on Windows, helping you ensure a smoother setup and management of different Node.js versions.