為了方便切換Node版本,我們可以安裝NVM(Node Version Manager)。
介紹一下如何在Mac上安裝這個工具。
官方有提到不支持 homebrew 的 nvm 安裝
Homebrew installation is not supported. If you have issues with homebrew-installed
nvm
, pleasebrew uninstall
it, and install it using the instructions below, before filing an issue.
我們這邊依照官方步驟來安裝(可以用 curl 或是 wget 下載)
- curl
1 |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.2/install.sh | bash |
- wget
1 |
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.2/install.sh | bash |
安裝好記得先把terminal關閉重開,或是手動重新生效bas_profile
1 |
source ~/.bash_profile |
確認一下是否成功
1 |
nvm --version |
接下來就可以安裝指令版本的Node了
參考資料: