MAC之zsh终端使用nvm安装指定版本node[操作系统入门]

编程

安装brew

终端上运行

$ /usr/bin/ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”

安装NVM

$ brew install nvm

安装完成之后打开shell的配置文件

$ cd ~

$ vim ~/.zshrc

# 如果是bash的话执行

$ vim .bash_profile

在文件里添加以下命令

export NVM_DIR=~/.nvm

source $(brew --prefix nvm)/nvm.sh

然后重新source

$ source ~/.zshrc

# 如果是bash的话执行

$ source .bash_profile

使用nvm安装node

$ nvm ls-remote 查看 所有的node可用版本

$ nvm install xxx 下载你想要的版本

$ nvm use xxx 使用指定版本的node

$ nvm alias default xxx 每次启动终端都使用该版本的node

MAC之zsh终端使用nvm安装指定版本node

原文:https://www.cnblogs.com/nayek/p/13266167.html

以上是 MAC之zsh终端使用nvm安装指定版本node[操作系统入门] 的全部内容, 来源链接: utcz.com/z/518161.html

回到顶部