发布于 2015-11-17 16:09:04
如果您正在运行32位Windows,那么您需要链接目录中的node-v0.12.7-x86.msi文件。
如果您正在运行64位Windows,那么您希望node-v0.12.7-x64.msi文件位于x64子目录中.
发布于 2015-11-17 15:58:38
我建议nvm,这对节点版本管理和安装任何特定版本的节点都是很好的选择。https://github.com/creationix/nvm
发布于 2015-11-17 16:09:21
正如@Ryan McDermott建议的那样,nvm是好的。我喜欢的另一个选项是nodenv:https://github.com/OiNutter/nodenv。
首先,安装nodenv。然后,安装插件node-build (https://github.com/OiNutter/node-build)。然后,您可以执行以下操作:
nodenv install --list # list available node versions
nodenv install 0.12.7 # install the specified version
nodenv global 0.12.7 # use the specified version of nodehttps://stackoverflow.com/questions/33761423
复制相似问题