在 windows 上使用 nvm 安装 node lts

installing node lts with nvm on windows

我已经在 windows 上安装了 nvm(来自 here),但是 运行 nvm install lts 打印:

lts.0.0  
Node.js vlts.0.0 is only available in 32-bit.

如何在 windows 上安装 node lts?

this github comment 之后,运行 nvm list available 然后是 nvm install x.y.z

完成后别忘了nvm use x.y.z。我使用了 this manual - 以防有帮助。

要安装和使用 Node.js 的最新 LTS 版本:

nvm install --lts
nvm use --lts

安装和使用 Node.js 的特定 LTS 版本:

nvm install lts/erbium
nvm use lts/erbium
nvm install --lts.14.15.4

正在下载 node.js 版本 14.15.4(64 位)... 完成