<aside> 💡 官方說明中提到 nvm 不支持 Windows,但可以在 WSL(Linux的Windows子系統) 中工作。對於Windows,可以使用開源社區開發的 nvm-windows,但更新及支援的指令可能不完善。
</aside>
nvm-windows:
進入 Releases 頁面下載「nvm-setup.zip」並安裝,重新啟動 CLI 即可輸入 nvm
測試結果。
可用 curl
或 wget
指令使用安裝腳本安裝或更新 nvm:
$ curl -o- <https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh> | bash
# 或
$ wget -qO- <https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh> | bash
執行 source
指令立即應用設定,根據系統設定檔位置使用下方其中一個設定檔
~/.bash_profile
~/.zshrc
~/.profile
~/.bashrc
source ~/.bashrc
測試指令
nvm --version