优质博文IT-BLOG-CN
NVM(Node Version Manager)
是一个用于管理多个Node.js
版本的工具。它允许开发者在同一台机器上安装和切换不同版本的Node.js
,以便在不同的项目中使用不同的Node.js
版本。macOS
用户可以使用homebrew
来安装NVM
。
一、安装homebrew
在命令行之行如下代码:根据提示输入回车键即可。
java
/bin/bash -c "$(curl -fsSL https:/raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
二、删除现有Node版本
如果系统之前安装了node
,需要先卸载。如果还没有安装就跳过。
shell
brew uninstall --ignore-dependencies node
brew uninstall --force node
三、安装NVM
【1】更新Homebrew
软件包列表并安装NVM
。
shell
brew update
brew install nvm
如果出现zsh: command not found: brew
错误,解决方案
【2】在home
目录中为NVM
创建一个文件夹。
shell
mkdir ~/.nvm
【3】在.bash_profile
文件中配置所需的环境变量。
shell
vim ~/.bash_profile
【4】在 ~/.bash_profile
(或~/.zshrc
,用于macOS Catalina
或更高版本)中添加如下配置。
shell
export NVM_DIR=~/.nvm
source $(brew --prefix nvm)/nvm.sh
【5】修改完配置后需要执行自动加载命令才能生效。
shell
source ~/.bash_profile
四、安装Node.js
【1】查看可用的版本
shell
nvm ls-remote
【2】可以使用别名,如node
代表最新版本,lts
代表最新的LTS
版本,或者直接输入版本号等;
shell
nvm install node ## 安装最后一个长期支持版本
nvm install 22
【3】检验node.js
是否安装成功
shell
nvm ls
【4】当然如果你安装了多个版本,可以在任何时候将任何版本设置为默认版本。
shell
nvm use 22