Linux下安装NVM

  1. 使用以下命令安装 NVM:
$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
  1. 对 inotify 做以下配置:
$ echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
  1. 加载nvm(将以下两行代码加到启动脚本中 (~/.bash_profile, ~/.zshrc, ~/.profile, 或者 ~/.bashrc):):
$ export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
  1. 安装 8.* LTS 版本 (长久维护版本)
$ nvm install 8.11.2
  1. 设置默认版本:
$ nvm use 8.11.2
$ nvm alias default 8.11.2
  1. 检查 Node.js 的版本:
$ node -v
  1. 使用淘宝进行加速 NPM :
$ npm config set registry=https://registry.npm.taobao.org
  1. 将 NPM 更新到最新:
$ npm install -g npm
  1. 检测版本:
$ npm -v

你可能感兴趣的:(Linux下安装NVM)