These answers are all about updating the version of Node, when the original question is about updating the version of the NVM tool itself.

The script to update NVM is:

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

and you can find the list of the latest releases here: https://github.com/nvm-sh/nvm/releases

More details found here: https://techsparx.com/nodejs/howto/nvm-deprecate-mirror.html

Answer from starryeyez024 on Stack Overflow
🌐
GitHub
github.com › nvm-sh › nvm
GitHub - nvm-sh/nvm: Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions
To download, compile, and install the latest release of node, do this: nvm install node # "node" is an alias for the latest version
Starred by 90.4K users
Forked by 9.7K users
Languages   Shell 98.0% | Makefile 1.2%
🌐
Nvmnode
nvmnode.com › guide › download.html
Download NVM For Windows, Linux, and macOS - NVM Documentation
Below is a list of available versions of NVM for Windows: The latest stable release of NVM for Windows can be downloaded from the official GitHub repository: ... After downloading NVM for Windows, proceed to the Windows installation guide for step-by-step instructions.
🌐
GitHub
github.com › coreybutler › nvm-windows
GitHub - coreybutler/nvm-windows: A node.js version management utility for Windows. Ironically written in Go.
nvm install <version> [arch]: The version can be a specific version, "latest" for the latest current version, or "lts" for the most recent LTS version. Optionally specify whether to install the 32 or 64 bit version (defaults to system arch).
Starred by 44.1K users
Forked by 3.7K users
Languages   Go 72.3% | Inno Setup 25.9%
🌐
Microsoft Learn
learn.microsoft.com › en-us › windows › dev-environment › javascript › nodejs-on-windows
Set up Node.js on native Windows | Microsoft Learn
We recommend using the installer, but if you have a more advanced understanding of your needs, you may want to consider the manual installation. The installer will point you to the releases page for the most recent version. Download the nvm-setup.z...
🌐
freeCodeCamp
freecodecamp.org › news › node-version-manager-nvm-install-guide
Node Version Manager – NVM Install Guide
September 9, 2022 - Here's how to install it: In the nvm-windows repository Readme, click on "Download Now!": This will open a page showing different NVM releases. In the latest release (which as of the time of writing this is 1.1.9), you'll find different assets.
🌐
HeyNode
heynode.com › tutorial › install-nodejs-locally-nvm
Install Node.js Locally with Node Version Manager (nvm) | HeyNode
Windows users: The process for installing nvm on Windows is different than what’s shown below. If you’re using Windows check out this Windows-specific version of nvm. ... Using curl, or wget, download the installation script. In the URL below make sure you replace v0.35.0 with the latest ...
🌐
DreamHost
help.dreamhost.com › hc › en-us › articles › 360029083351-Installing-a-custom-version-of-NVM-and-Node-js
Installing a custom version of NVM and Node.js – DreamHost Knowledge Base
Before proceeding, visit the github nvm-sh page to determine what version of NVM to install. These instructions use version v0.40.1. Log into your server via SSH. Change into your user's directory. ... Download NVM using curl.
Find elsewhere
🌐
Linode
linode.com › docs › guides › how-to-install-use-node-version-manager-nvm
How to Install and Use NVM (Node Version Manager) | Linode Docs
November 29, 2023 - ##############################... using node v19.9.0 (npm v9.6.3) ... If you only specify the major release number for a Node version, NVM installs the latest version of that release....
🌐
2coffee
2coffee.dev › en › articles › how-to-use-and-tips-for-nvm-node-version-manager
How to Use and Tips for nvm - Node Version Manager
19 hours ago - # Download version 18 $ nvm install 18 # List installed versions $ nvm ls v16.18.1 -> v18.17.1 # Select version 16 $ nvm use 16 # Run your code $ node index.js
🌐
SitePoint
sitepoint.com › blog › javascript › installing multiple versions of node.js using nvm
Installing Multiple Versions of Node.js Using nvm — SitePoint
March 3, 2025 - By running the above in a terminal, ... you want to install, for example, the latest 12.14 patch, you can do it by running nvm install 12.14....
🌐
GitHub
github.com › coreybutler › nvm-windows › releases
Releases · coreybutler/nvm-windows
If you already have an older version of NVM for Windows installed Download nvm-update.zip and extract it. You will find a file called nvm-update.exe. Double click to run it.
Author   coreybutler
🌐
npm
docs.npmjs.com › downloading-and-installing-node-js-and-npm
Downloading and installing Node.js and npm | npm Docs
We do not recommend using a Node ... to download the latest version of npm, on the command line, run the following command:npm install -g npm...
🌐
SourceForge
sourceforge.net › projects › nvm-for-windows.mirror
NVM for Windows download | SourceForge.net
NVM for Windows
Download NVM for Windows for free. A node.js version management utility for Windows written in Go. Manage multiple installations of node.js on a Windows computer. Similar (not identical) to nvm, but for Windows. Manage multiple installations of node.js on a Windows computer. Similar (not identical) to nvm, but for Windows. This has always been a node version manager, not an io.js manager, so there is no back-support for io.js. However, node 4+ is supported. Remember when running nvm install or nvm use, you must have Windows administrative rights (to create symlinks). There are situations where
Rating: 5 ​
🌐
Nvmnode
nvmnode.com
NVM - Node.js Version Manager tool - NVM Documentation
# Install a specific Node.js version nvm install 18.16.0 # Use the installed version nvm use 18.16.0 # Set a default version nvm alias default 18.16.0
🌐
GitHub
gist.github.com › MichaelCurrin › 5c2d59b2bad4573b26d0388b05ab560e
Install Node using NVM · GitHub
List available installed versions. $ nvm ls v10.0.0 v10.15.0 v14.9.0 -> system default -> node (-> v14.9.0) ...
🌐
GeeksforGeeks
geeksforgeeks.org › linux-unix › how-to-install-nvm-on-ubuntu-22-04
How to Install NVM on Ubuntu 22.04 - GeeksforGeeks
July 23, 2025 - The above command downloads the NVM installation script directly from the official GitHub repository and pipes it into the bash shell to run it. Make sure that you update v0.39.1 with the current version at the time of your installation.
🌐
Medium
medium.com › @sabirsafder › how-to-install-nvm-node-version-manager-on-windows-mac-os-46b367448103
How to install NVM (Node Version Manager) on Windows & Mac OS | by Sabir Hussain | Medium
September 3, 2024 - nvm-windows provides a management utility for managing Node.js versions in Windows. Here's how to install it: In the nvm-windows repository Readme, click on “Download Now!”: ... This will open a page showing different NVM releases.
🌐
GeeksforGeeks
geeksforgeeks.org › installation guide › how-to-install-and-use-nvm-on-windows
How to Install and Use NVM on Windows - GeeksforGeeks
July 23, 2025 - Learn how to install NVM (Node Version Manager) on Windows 7, 8.1, 10, and 11. Step-by-step guide for managing multiple Node.js versions, switching versions, and troubleshooting errors.