美文网首页
MacBook安装node

MacBook安装node

作者: jimmyLoOo | 来源:发表于2017-08-23 10:27 被阅读0次

1、安装brew:curl -LsSf http://github.com/mxcl/homebrew/tarball/master | sudo tar xvz -C/usr/local --strip1

2、brew update

3、brew install nvm,在shell的配置文件(~/.bashrc, ~/.profile, or ~/.zshrc)中添加如下内容:

            # For NVM

             export NVM_DIR=~/.nvm

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

4、查看node的所有版本:nvm ls-remote

5、选择版本安装:nvm install 版本号

6、查看已经安装的版本:nvm ls

7、使用哪个版本:nvm use 版本号

相关文章

网友评论

      本文标题:MacBook安装node

      本文链接:https://www.haomeiwen.com/subject/sdbaxxtx.html