快速安装node环境(使用nvm命令)

总共分三步。

第一步,先把版本控制脚本安装进来

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

这个脚本会将版本安装到目录 ~/.nvm,然后将下边环境变量加入到环境文件中去 (~/.bash_profile, ~/.zshrc, ~/.profile, or ~/.bashrc)。

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

文件建议:
Mac: ~/.bash_profile
Ubuntu/CentOS: ~/.bashrc

第二步,再根据实际要求安装node版本

nvm install 4.8.2

切换node.js到指定版本

nvm use 4
# or
nvm use 4.8.2

第三步,测试安装

bash-shell$ node -v
v4.8.3
bash-shell$ npm -v
2.15.11

完了。

你可能感兴趣的:(node-js)