赞
踩
nvm 可以让你通过命令行快速安装和使用不同版本的node
管理多个node版本
//查看已经安装在全局的模块
npm ls -g --depth=0
//删除全局node_modules目录
sudo rm -rf /usr/local/lib/node_modules
//删除node
sudo rm /usr/local/bin/node
//删除全局node模块注册的软链
cd /usr/local/bin && ls -l | grep "../lib/node_modules/" | awk '{print $9}'| xargs sudo rm
之后输入node -v 验证是否卸载完成
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
问题:curl: (7) Failed to connect to raw.githubusercontent.com port 443 after 19
终端输入:
sudo vi /etc/hosts
因为这个文件是只读,输入i就可以编辑了
编辑完之后按esc 然后输入:wq 如果保存失败;强制保存 需要加上 ! :wq!
然后重新安装
问题:fatal: unable to access 'https://github.com/nvm-sh/nvm.git/'
终端中输入:
git config --global --unset http.proxy
git config --global --unset https.proxy
然后重新安装
如果很慢 重新打开终端安装
终端中输入
cd .nvm
进入
.nvm
文件夹,新建.bash_profile
:touch .bash_profile //新建文件
open .bash_profile //打开文件
在文件夹复制以下内容
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
关闭文件,然后执行这个文件:
source .bash_profile
如果打开新终端没有找到nvm 就在新终端里重新输入环境变量配置下就可以了
配置 .bash_profile 文件和.zshrc 文件
touch .zshrc或者.bash_profile //新建文件
open ~/.zshrc或者~/.bash_profile //打开文件
source ~/.bash_profile
source .zshrc
nvm -v 检查安装是否完成
运行 nvm install v12.6.0 就可以把这个版本的 Node.js安装到我们的机器上了
nvm use 12.16.0 //使用当前版本
nvm ls //查看安装的node版本
node -v //查看nodejs版本
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。