在MacOS M1上安装节点
#node #mac

1.创建~/.zshrc如果不存在,请使用以下命令

touch ~/.zshrc

2.下载NVM

url -o- https://raw.githubusercontent.com/nvmsh/nvm/v0.36.0/install.sh | bash

下载后,关闭终端并再次打开。

3.安装Node

nvm install --lts

尝试运行以下命令验证版本:

node -v
npm -v

其他有用的命令

检查所有可用节点版本

nvm ls

安装特定版本

nvm install <version>

eg:

nvm install v16.19.0

切换到特定版本

nvm use <version>