linux 环境安装nvm
1、安装方式
# 方式1
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
# 方式2 【推荐】
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
2、创建nvm命令目录
mkdir -p ~/.nvm
3、编辑配置地址
在以下任一文件中均可
~/.bash_profile
,~/.zshrc
,~/.profile
, or~/.bashrc
,在文件尾部添加nvm命令所在路径
vim ~/.bash_profile# nvm执行路径地址
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
4、重新加载配置文件
source ~/.bash_profile
5、查看nvm版本
[root@xxx ~]# nvm --version
0.39.7
6、安装最新node,并查看已安装版本
nvm install node #也可以指定版本
[root@xxx~]# nvm listv21.7.1
7、使用node指定版本
nvm use v21.7.1