安装nvm
sudo apt-get install git
git clone https://github.com/creationix/nvm.git /opt/nvm && cd /opt/nvm && git checkout `git describe --abbrev=0 --tags`
echo "source /opt/nvm/nvm.sh">>~/.bashrc
source ~/.bashrc
nvm -v #查看nvm版本
使用nvm安装node
nvm ls-remote
nvm install v7.8.0
nvm alias default v7.8.0 # 设置默认版本
网友评论