Mac上安装nvm

Mac上安装nvm

一、卸载npm

如果之前没有安装过node,跳过这一步。如果之前安装过node,先把node卸载。

npm uninstall npm -g

#查看npm是否卸载

npm -v

#卸载node

sudo rm /usr/local/bin/node

#查看node是否卸载

node -v

//删除全局node模块注册的软链 cd /usr/local/bin && ls -l | grep "../lib/node_modules/" | awk '{print $9}'| xargs sudo rm

二、在终端输入以下命令下载nvm

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash

github/nvm里可以找到该链接

可能会遇到的错误:

1.fatal: unable to access 'https://github.com/nvm-sh/nvm.git/

那么需要执行:

git config --global --unset http.proxy
git config --global --unset https.proxy

此时如果遇到以下错误:

xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun

则需再执行:

xcode-select --install

在这里插入图片描述

2.Failed to connect to raw.githubusercontent.com port 443,couldn’t find the server.

解决步骤:

(1)利用代理地址,去https://ipaddress.com输入地址raw.githubusercontent.com找到对应ip。(此步骤可能需要翻墙)
在这里插入图片描述

(2)终端输入sudo vim /etc/hosts编辑hosts文件,加入raw.githubusercontent.com的ip地址。
在这里插入图片描述

(3)进入hosts文件,按下按键ℹ️进入编写模式,编写对应的ip和地址,写完按下esc键退出编辑模式。输入:wq然后回车。
在这里插入图片描述

(4)终端输入cat /etc/hosts 查看hosts,是否加入和ip和地址。

最后重新运行nvm下载命令:curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash

三、配置环境变量,添加bash.profile文件。

(1)终端输入touch .bash_profile,创建.bash.profile文件。

(2)终端输入open .bash_profile,编辑.bash.profile文件。

(3)在弹出的.bash.profile文件内增加以下代码

#nvm
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 bash_completion

(4)终端输入nvm -v 输出版本号,即为安装成功。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

晓风伴月

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值