binding.gyp 尝试加载 binding.gyp 时未找到(cwd:\node_modules\appium\node_modules\heapdump)

binding.gyp not found (cwd: \node_modules\appium\node_modules\heapdump) while trying to load binding.gyp

我正在尝试使用 npm 命令安装 appium。

每次尝试我都会出错。

在最后一次尝试中,我在下面提到 link:

node-gyp build error windows x64

所以要在我的 windows 10 64 位机器上安装 appium,我遵循以下步骤:

npm install --global --production windows-build-tools

npm config set msvs_version 2013 --global

npm install -g node-gyp-install

npm install appium

出现如下错误:

C:\WINDOWS\system32\node_modules\appium\node_modules\heapdump>if not defined npm_config_node_gyp (node "C:\Program Files\nodejs\node_modules\npm\bin\node-gyp-bin\....\node_modules\node-gyp\bin\node-gyp.js" rebuild ) else (node "" rebuild ) gyp: binding.gyp not found (cwd: C:\WINDOWS\system32\node_modules\appium\node_modules\heapdump) 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:305:16) gyp ERR! stack at emitTwo (events.js:106:13) gyp ERR! stack at ChildProcess.emit (events.js:191:7) gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:215:12) gyp ERR! System Windows_NT 10.0.15063 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:\WINDOWS\system32\node_modules\appium\node_modules\heapdump gyp ERR! node -v v6.11.0 gyp ERR! node-gyp -v v3.4.0 gyp ERR! not ok C:\WINDOWS\system32 `-- appium@1.7.1

appium 的唯一问题是配置复杂。

如果有人有在 windows 中安装 appium 的工作步骤,请分享。真的会有帮助

如有任何建议,我们将不胜感激

我错过了 appium 安装的全局标签

npm install -g appium

所以按照以下步骤安装:

npm install --global --production windows-build-tools

npm config set msvs_version 2013 --global

npm install -g node-gyp-install

npm install -g node-gyp

npm install -g appium