python 多版本管理有pyenv,node也有类似的工具nvm
安装nvm
windows:https://github.com/coreybutler/nvm-windows
other:https://github.com/nvm-sh/nvm
安装 node
nvm install x.x.x
这里x.x.x就是你想安装的node的版本
查看所有node版本
nvm list
选择使用哪个node
nvm use x.x.x
python 多版本管理有pyenv,node也有类似的工具nvm
windows:https://github.com/coreybutler/nvm-windows
other:https://github.com/nvm-sh/nvm
nvm install x.x.x
这里x.x.x就是你想安装的node的版本
nvm list
nvm use x.x.x