我正在尝试将nodejs升级到计算机中的最新版本。通过npm执行以下命令后,出现以下错误。
npm install -g n
这给出了如下错误
npm ERR! code EBADPLATFORM
npm ERR! notsup Unsupported platform for n@2.1.12: wanted {"os":"!win32","arch":
"any"} (current: {"os":"win32","arch":"x64"})
npm ERR! notsup Valid OS: !win32
npm ERR! notsup Valid Arch: any
npm ERR! notsup Actual OS: win32
npm ERR! notsup Actual Arch: x64
然后我发现了this问题,并在命令下面执行了。
npm install --global --production npm-windows-upgrade
npm-windows-upgrade --npm-version latest
我在节点命令提示符下遇到以下错误
C:\Users\myName\AppData\Roaming\npm\node_modules\npm-windows-upgrade\src\upgrader.j
s:26
async ensureInternet () {
^^^^^^^^^^^^^^
SyntaxError: Unexpected identifier
at createScript (vm.js:56:10)
at Object.runInThisContext (vm.js:97:10)
at Module._compile (module.js:542:28)
at Object.Module._extensions..js (module.js:579:10)
at Module.load (module.js:487:32)
at tryModuleLoad (module.js:446:12)
at Function.Module._load (module.js:438:3)
at Module.require (module.js:497:17)
at require (internal/module.js:20:19)
at Object.<anonymous> (C:\Users\HP2\AppData\Roaming\npm\node_modules\npm-win
dows-upgrade\bin\npm-windows-upgrade.js:8:16)
有人可以帮忙吗?
当前版本npm 6.9.0
当前版本节点v6.10.3
答案 0 :(得分:1)
只需尝试从NodeJS website directly.下载并安装最新版本 或像Chocolatey一样用作程序包管理器,并通过Powershell或您自己的脚本下载并更新NodeJS。
答案 1 :(得分:0)
首先要注意的是使用Powershell作为管理员
请检查节点版本,
对于低于v8.0的Node版本,请使用
npm-windows-upgrade@5.0.0
对于低于v6.0的Node版本,请使用
npm-windows-upgrade@4.1.1
对于低于v4.0的Node版本,请使用
npm-windows-upgrade@3.1.1
我的节点版本为6.9.5。我尝试过
npm install --global --production npm-windows-upgrade@5.0.0