如何在Windows 7 64位操作系统中更新node.js?
我试过这个名人:
npm cache clean -f
npm install -g n
n stable
但在npm install -g n
中,它未能发出以下错误:
C:\Windows\system32>npm install -g n
npm http GET https://registry.npmjs.org/n
npm http 304 https://registry.npmjs.org/n
npm ERR! notsup Unsupported
npm ERR! notsup Not compatible with your operating system or architecture: n@1.2
.9
npm ERR! notsup Valid OS: !win32
npm ERR! notsup Valid Arch: any
npm ERR! notsup Actual OS: win32
npm ERR! notsup Actual Arch: ia32
npm ERR! System Windows_NT 6.1.7601
npm ERR! command "C:\\Program Files (x86)\\nodejs\\\\node.exe" "C:\\Program File
s (x86)\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install" "-g" "n"
npm ERR! cwd C:\Windows\system32
npm ERR! node -v v0.10.28
npm ERR! npm -v 1.4.9
npm ERR! code EBADPLATFORM
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR! C:\Windows\system32\npm-debug.log
npm ERR! not ok code 0
请提出解决方案。我怀疑这可能是因为64位版本的操作系统。
谢谢和问候。
答案 0 :(得分:24)
您可以通过从here执行最新node.js版本的Windows安装程序来更新。
n
无法在Windows上运行,因为它基本上是giant (bash) shell script。
答案 1 :(得分:0)