安装 drivelist npm 模块时调用 'node -e "require('nan')"' 返回退出状态 1

Call to 'node -e "require('nan')"' returned exit status 1 when installing drivelist npm module

我正在尝试获取我佩戴的存储库,以便在我的笔记本电脑上工作。但是当我尝试 运行 npm-install 我得到这个错误:

gyp: Call to 'node -e "require('nan')"' returned exit status 1 while in binding.gyp. while trying to load binding.gyp
gyp ERR! configure error
gyp ERR! stack Error: `gyp` failed with exit code: 1
gyp ERR! stack     at ChildProcess.onCpExit (C:\Program Files\nodejs\node_modules\npm\node_modules\node-gyp\lib\configure.js:351:16)
gyp ERR! stack     at ChildProcess.emit (events.js:305:20)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:275:12)
gyp ERR! System Windows_NT 6.1.7601
gyp ERR! command "C:\Program Files\nodejs\node.exe" "C:\Program Files\nodejs\node_modules\npm\node_modules\node-gyp\bin\node-gyp.js" "rebuild"
gyp ERR! cwd C:\programing\nodejs\node-smart-tv\SmartTV\node_modules\drivelist
gyp ERR! node -v v13.5.0
gyp ERR! node-gyp -v v5.0.5
gyp ERR! not ok
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! drivelist@6.4.6 install: `prebuild-install || node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the drivelist@6.4.6 install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\Username\AppData\Roaming\npm-cache\_logs19-12-28T16_43_04_398Z-debug.log

我用 teamviewer 连接到我的家用 PC,并尝试在那里安装那个包,它成功了。该包需要编译 MSVC。它工作的计算机是 Windows 10 PC with visual studio 2017。它不工作的计算机是 Windows 7 和 visual studio 2017.

自我回答,因为这可以让别人省去很多麻烦。 HKCU\Software\Microsoft\Command Processor 注册表中有一个启动脚本失败并因此返回 1,这可能破坏了 shell 脚本。用空字符串替换该键的值解决了问题。

我在尝试使用 electron-build 重建串口模块时发生了这种情况。 Tomáš 的回复为我解决了这个问题,只是重申一下:

  1. Winkey + R -> regedit
  2. 转到 HKEY_CURRENT_USER\Software\Microsoft\Command 处理器
  3. 删除 AutoRun 值内的任何内容,使其留空
  4. 重新加载CMD/restartIDE