赞
踩
1. 首先需要卸载已经安装的node版本
- sudo npm uninstall npm -g
- sudo rm -rf /usr/local/lib/node /usr/local/lib/node_modules /var/db/receipts/org.nodejs.*
- sudo rm -rf /usr/local/include/node /Users/$USER/.npm
- sudo rm /usr/local/bin/node
- sudo rm /usr/local/share/man/man1/node.1
- sudo rm /usr/local/lib/dtrace/node.d
2. 在终端中可以使用以下命令来安装:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
如果有这个报错可能是无法连接到 GitHub 的服务器
- curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
- % Total % Received % Xferd Average Speed Time Time Time Current
- Dload Upload Total Spent Left Speed
- 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
- curl: (7) Failed to connect to raw.githubusercontent.com port 443 after 7 ms: Couldn't connect to server
可以使用国内gitee镜像源来安装
curl -o- https://gitee.com/mirrors/nvm/raw/v0.38.0/install.sh | bash
nvm 在mac上的常用命令行
- nvm ls:已经安装的 Node.js 版本以及相关的别名。
-
- nvm ls-remote:查看所有node版本,包括未安装的版本
-
- nvm use v20.10.0:切换当前终端的node版本(和windows有点不同)
-
- nvm alias default 20.10.0 : 切换终端默认版本,下次打开终端时,默认将使用 v20.10.0 版本。
-
- nvm install 14.17.1:安装对应版本的node
-
- nvm uninstall <version>:卸载对应node
-
- nvm current : 查看当前版本
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。