01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 | # Install script: https://github.com/nvm-sh/nvm#install--update-script curl -o- https: //raw .githubusercontent.com /nvm-sh/nvm/v0 .39.5 /install .sh | bash # check current used node version node - v # list local available node versions nvm list # list all released node versions nvm ls -remote # install specific node version and switch to it nvm install v20.5.1 # switch to a specific node version, which is already installed nvm use v20.5.1 |