赞
踩
NVM其实用于管理多个版本的Node。没有NVM的情况是:
sudo apt-get update
sudo apt-get install build-essential
下载并运行脚本(注意具体版本)
可能会遇到问题https://my.oschina.net/matrixchan/blog/3160812
,解决方法见这里
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
这个脚本具体操作:
The script clones the nvm repository to ~/.nvm, and attempts to add the source lines from the snippet below to the correct profile file (~/.bash_profile, ~/.zshrc, ~/.profile, or ~/.bashrc).
因此,source ~/.bashrc
来激活新配置
# 判断是否安装成功
nvm --version
下载最新版本的Node
nvm install node
使用最新的Node
# node指代的是最新版本
# 你可以选择你需要的版本
nvm use node
返回
# 原来是用v6.13.4,现在用v13.6.0
Now using node v13.6.0 (npm v6.13.4)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。