服务器安装nvm来管理和安装nodejs

nvm的全称是node version manage,字面意思node版本管理

github地址是 https://github.com/nvm-sh/nvm

nvm官方对nvm的介绍

 nvm allows you to quickly install and use different versions of node via the command line.

翻译一下就是:nvm允许你快速通过命令行安装node的不同版本

官方也是很贴心的给出了示例代码

$ nvm use 16
Now using node v16.9.1 (npm v7.21.1)
$ node -v
v16.9.1
$ nvm use 14
Now using node v14.18.0 (npm v6.14.15)
$ node -v
v14.18.0
$ nvm install 12
Now using node v12.22.6 (npm v6.14.5)
$ node -v
v12.22.6

一 安装nvm

现在是2024年他的版本是v0.40.1,官方给出的命令行如下,随着时间流逝,可能在你查看这篇文章时它的版本已经升级,可以去官方的github找 https://github.com/nvm-sh/nvm

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

or

wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash

安装完nvm后,检查是否安装成功

有时候需要退出命令行工具,重新登陆试试下面的命令,检查是否安装成功

nvm -h

如果有输出表示安装成功

二,安装最新版本的node

nvm install lts

LTS 代表 Long Term Support,即长期支持版本。

这个就是最新的稳定版本

二,安装指定版本版本的node

nvm install 16

安装版本16的node

评论

发表回复