2015-11-07 138 views
1

我正在运行带有节点4.2.2的windows 10。我试图设置与我的arduino一起工作,但我一直遇到安装serialport的问题。没有我能找到的是帮助。这些是我运行npm时出现的错误安装串口在node.js上安装serialport时出错

npm ERR! Windows_NT 10.0.10240 
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install" "serialport" "-g" 
npm ERR! node v4.2.2 
npm ERR! npm v2.14.7 
npm ERR! code ELIFECYCLE 

npm ERR! [email protected] install: `node-pre-gyp install --fallback-to-build` 
npm ERR! Exit status 1 
npm ERR! 
npm ERR! Failed at the [email protected] install script 'node-pre-gyp install --fallback-to-build'. 
npm ERR! This is most likely a problem with the serialport package, 
npm ERR! not with npm itself. 
npm ERR! Tell the author that this fails on your system: 
npm ERR!  node-pre-gyp install --fallback-to-build 
npm ERR! You can get their info via: 
npm ERR!  npm owner ls serialport 
npm ERR! There is likely additional logging output above. 

npm ERR! Please include the following file with any support request: 
npm ERR!  c:\Users\john\Desktop\node-ardx\node_modules\johnny-five\npm-debug.log 
+0

你是否已经安装了['node-gyp''s dependencies](https://github.com/nodejs/node-gyp#installation) - Python和C++编译器? –

回答

0

请确保您安装了Python 2.7。如果这样做,这可能是C++编译器的问题。 安装Microsoft构建工具2015(https://www.microsoft.com/en-us/download/details.aspx?id=48159) 然后,在CMD线更改默认的编译器VS2015:

$ npm config set msvs_version 2015 

而且要加倍肯定的:

$ set VCTargetsPath=C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V140 

如果现在尝试安装的SerialPort你会得到一些黄色的警告,但安装没有任何问题。

干杯!

+0

谢谢你们。它最终成为像你说的雨果那样的编译器问题。我重新安装并重新配置它,它工作... :-) –