在使用NPM安装xml2json时遇到一些问题。
我的开发环境就是这样。
操作系统:Windows 10 Pro 64bit IDE:Visual Studio代码 节点版本:8.10.0现在我做节点项目。但是我无法安装xml2json。在npmjs.com
可以使用此命令进行安装
$ npm install xml2json
但是命令说它不能被安装。错误消息是这样的。
C:\Users\super\Downloads\project\data\myapp>npm install xml2json
> node-expat@2.3.16 install C:\Users\super\Downloads\project\data\myapp\node_modules\node-expat
> node-gyp rebuild
C:\Users\super\Downloads\project\data\myapp\node_modules\node-expat>if not defined npm_config_node_gyp (node "C:\Users\super\AppData\Roaming\npm\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js" rebuild ) else (node "C:\Users\super\AppData\Roaming\npm\node_modules\npm\node_modules\node-gyp\bin\node-gyp.js" rebuild )
gyp ERR! configure error
gyp ERR! stack Error: Can't find Python executable "C:\Users\super\AppData\Local\Programs\Python\Python37-32\python.EXE", you can set the PYTHON env variable.
gyp ERR! stack at PythonFinder.failNoPython (C:\Users\super\AppData\Roaming\npm\node_modules\npm\node_modules\node-gyp\lib\configure.js:483:19)
gyp ERR! stack at PythonFinder.<anonymous> (C:\Users\super\AppData\Roaming\npm\node_modules\npm\node_modules\node-gyp\lib\configure.js:508:16)npm\node_modules\node-gyp\lib\configure.js:508:16) fs\polyfills.js:284:29
gyp ERR! stack at C:\Users\super\AppData\Roaming\npm\node_modules\npm\node_modules\graceful-fs\polyfills.js:284:29
gyp ERR! stack at FSReqWrap.oncomplete (fs.js:152:21)
gyp ERR! System Windows_NT 10.0.17134
gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Users\\super\\AppData\\Roaming\\npm\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild"gyp ERR! cwd C:\Users\super\Downloads\project\data\myapp\node_modules\node-expat
gyp ERR! node -v v8.10.0
gyp ERR! node-gyp -v v3.6.2
gyp ERR! not ok
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! node-expat@2.3.16 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the node-expat@2.3.16 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\super\AppData\Roaming\npm-cache\_logs\2018-07-31T15_33_12_196Z-debug.log
我已经安装了python并将其添加到path,但是它仍然无法正常工作。而且我很想用错误消息来解决这个问题,但是没有办法给我解决方案。
我已经尝试过node-gyp重建和其他方法。
答案 0 :(得分:0)
如果其他人遇到此问题,这可能会有所帮助,
在Windows Terminal
npm install --global --production windows-build-tools
(这将安装Windows Build Tools并安装Python 2.7)
使用以下命令以管理员身份全局安装node-gyp:
npm install node-gyp
就是这样!安装完成后,关闭并重新运行终端窗口(正常情况下),然后再次安装有问题的程序包,该程序包将成功运行。
如果需要,您可以查看this原始帖子。