Mac 安装及配置NVM

NVM是 Node Version Manager 的缩写,是Mac环境下管理Node的工具。

  • 安装NVM

    • 在安装nvm之前需要安装Xcode命令工具

      xcode-select --install

    • 使用 curl 安装

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

    • 或者使用 wget 安装

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

    • NVM github的地址可以查看最新版本

  • 配置NVM的环境变量

    在 .bash_profile 文件中 加入

    export NVM_DIR="$HOME/.nvm"
    [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm
    [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"  # This loads nvm 			bash_completion
    

你可能感兴趣的:(工具)