NodeJS 如何在debian中更新节点版本从12到16?

igetnqfo  于 2022-11-29  发布在  Node.js
关注(0)|答案(1)|浏览(666)

我现在的版本是12.22.12,怎么更新到16版?

knsnq2tg

knsnq2tg1#

使用nvm

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

安装后:

nvm install 16

最后,使用您想要的版本:

nvm use 16

确认版本:

node -v

相关问题