安装line-in包时出错:NodeJS

3

我正在尝试使用 line-in 包来将输入的音频数据流作为输出。在安装包时,我遇到了错误,指出 node-gyp 重建命令失败。

我正在使用 NodeJS,但我真的不知道为什么 node-gyp 正试图访问我的 python.exe 文件。有人可以帮我解决这个问题吗?

gyp ERR! stack Error: Command failed: C:\Users\NikhileshSubramanian\AppData\Local\Programs\Python\Python37\python.EXE -c import sys; print "%s.%s.%s" % sys.version_info[:3];
gyp ERR! stack   File "<string>", line 1
gyp ERR! stack     import sys; print "%s.%s.%s" % sys.version_info[:3];
gyp ERR! stack                                ^
gyp ERR! stack SyntaxError: invalid syntax
gyp ERR! stack
gyp ERR! stack     at ChildProcess.exithandler (child_process.js:294:12)
gyp ERR! stack     at ChildProcess.emit (events.js:182:13)
gyp ERR! stack     at maybeClose (internal/child_process.js:962:16)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:251:5)
gyp ERR! System Windows_NT 10.0.17134
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 F:\Topgear\SpeechToText\node_modules\line-in
gyp ERR! node -v v10.15.0
gyp ERR! node-gyp -v v3.8.0
gyp ERR! not ok
npm WARN SpeechToText@1.0.0 No description
npm WARN SpeechToText@1.0.0 No repository field.

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! line-in@0.1.2 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the line-in@0.1.2 install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.```


node-gyp 找到了你的 Python3 安装并尝试使用它,但在 Python2 的 print 使用上出现了错误。 - davejagoda
1个回答

1

感谢 @davejagoda。我遇到了另一个问题 MSBUILD:错误 MSB3428:无法加载 Visual C++ 组件“VCBuild.exe”。要解决此问题,1)安装 .NET Framework 2.0 SDK,2)安装 Microsoft Visual Studio 2005 或 3)将组件的位置添加到系统路径中(如果它安装在其他地方)。我尝试安装带有 C++ 编译器的 Visual Code。我是否还需要安装单独的组件? - Nikhilesh A S
1
它没有任何单独的组件就可以工作了。感谢@devejagoda。 - Nikhilesh A S

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接