写在前面:VSCode报错问题解决方案:https://github.com/creationix/nvm/issues/1690
I fixed this temporarily by adding nvm use node to the end of my .bash_profile after the nvm path export.
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
nvm use node
c
1.安装(Centos)
可以通过curl或者wget进行安装,命令如下:
首先要安装git
yum install git
curl方式
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash
wget方式
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash
如果提示找不到命令,尝试
source ~/.bashrc
2.常用命令
nvm ls-remote //列出全部可以安装的版本号
nvm ls //列出已安装版本号
nvm install //安装指定版本号
nvm use //切换到指定版本号
nvm current //查看当前使用的版本号
nvm uninstall //卸载指定版本号