1//lists all versions
2nvm ls-remote
3
4//installs the version you want (in this case version 14.0.0)
5nvm install v14.0.0
6
7//use the version that you installed as the default
8nvm use v14.0.0
9
1curl -sL https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.0/install.sh -o install_nvm.sh
2
1curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash