npm安装错误:sqlite从不下载

安德鲁布鲁纳

在运行npm install以下载项目依赖项时,sqlite3遇到错误并且从不安装。尝试npm install sqlite3会产生相同的错误。

在ChromeOS的Linux Beta(Debian v10克星)上运行。

在其他人的机器上安装良好。期望它与ChromeOS有关。

链接到项目文件:https : //github.com/andrewbruner/fsjs-techdegree-unit-09

 andrewbruner@penguin:~/treehouse/fsjs-techdegree-unit-09$ npm install

 > [email protected] install /home/andrewbruner/treehouse/fsjs-techdegree-unit-09/node_modules/sqlite3
 > node-pre-gyp install --fallback-to-build

 node-pre-gyp WARN Using request for node-pre-gyp https download 
 node-pre-gyp WARN Tried to download(403): https://mapbox-node-binary.s3.amazonaws.com/sqlite3/v4.0.6/node-v72-linux-x64.tar.gz 
 node-pre-gyp WARN Pre-built binaries not found for [email protected] and [email protected] (node-v72 ABI, glibc) (falling back to source compile with node-gyp) 
 gyp ERR! build error 
 gyp ERR! stack Error: not found: make
 gyp ERR! stack     at getNotFoundError (/usr/lib/node_modules/npm/node_modules/which/which.js:13:12)
 gyp ERR! stack     at F (/usr/lib/node_modules/npm/node_modules/which/which.js:68:19)
 gyp ERR! stack     at E (/usr/lib/node_modules/npm/node_modules/which/which.js:80:29)
 gyp ERR! stack     at /usr/lib/node_modules/npm/node_modules/which/which.js:89:16
 gyp ERR! stack     at /usr/lib/node_modules/npm/node_modules/isexe/index.js:42:5
 gyp ERR! stack     at /usr/lib/node_modules/npm/node_modules/isexe/mode.js:8:5
 gyp ERR! stack     at FSReqCallback.oncomplete (fs.js:167:21)
 gyp ERR! System Linux 4.19.98-08076-g24ab33fb8e14
 gyp ERR! command "/usr/bin/node" "/usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "build" "--fallback-to-build" "--module=/home/andrewbruner/treehouse/fsjs-techdegree-unit-09/node_modules/sqlite3/lib/binding/node-v72-linux-x64/node_sqlite3.node" "--module_name=node_sqlite3" "--module_path=/home/andrewbruner/treehouse/fsjs-techdegree-unit-09/node_modules/sqlite3/lib/binding/node-v72-linux-x64" "--napi_version=5" "--node_abi_napi=napi" "--napi_build_version=0" "--node_napi_label=node-v72"
 gyp ERR! cwd /home/andrewbruner/treehouse/fsjs-techdegree-unit-09/node_modules/sqlite3
 gyp ERR! node -v v12.16.3
 gyp ERR! node-gyp -v v5.1.0
 gyp ERR! not ok 
 node-pre-gyp ERR! build error 
 node-pre-gyp ERR! stack Error: Failed to execute '/usr/bin/node /usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js build --fallback-to-build --module=/home/andrewbruner/treehouse/fsjs-techdegree-unit-09/node_modules/sqlite3/lib/binding/node-v72-linux-x64/node_sqlite3.node --module_name=node_sqlite3 --module_path=/home/andrewbruner/treehouse/fsjs-techdegree-unit-09/node_modules/sqlite3/lib/binding/node-v72-linux-x64 --napi_version=5 --node_abi_napi=napi --napi_build_version=0 --node_napi_label=node-v72' (1)
 node-pre-gyp ERR! stack     at ChildProcess.<anonymous> (/home/andrewbruner/treehouse/fsjs-techdegree-unit-09/node_modules/node-pre-gyp/lib/util/compile.js:83:29)
 node-pre-gyp ERR! stack     at ChildProcess.emit (events.js:310:20)
 node-pre-gyp ERR! stack     at maybeClose (internal/child_process.js:1021:16)
 node-pre-gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:286:5)
 node-pre-gyp ERR! System Linux 4.19.98-08076-g24ab33fb8e14
 node-pre-gyp ERR! command "/usr/bin/node" "/home/andrewbruner/treehouse/fsjs-techdegree-unit-09/node_modules/.bin/node-pre-gyp" "install" "--fallback-to-build"
 node-pre-gyp ERR! cwd /home/andrewbruner/treehouse/fsjs-techdegree-unit-09/node_modules/sqlite3
 node-pre-gyp ERR! node -v v12.16.3
 node-pre-gyp ERR! node-pre-gyp -v v0.11.0
 node-pre-gyp ERR! not ok 
 Failed to execute '/usr/bin/node /usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js build --fallback-to-build --module=/home/andrewbruner/treehouse/fsjs-techdegree-unit-09/node_modules/sqlite3/lib/binding/node-v72-linux-x64/node_sqlite3.node --module_name=node_sqlite3 --module_path=/home/andrewbruner/treehouse/fsjs-techdegree-unit-09/node_modules/sqlite3/lib/binding/node-v72-linux-x64 --napi_version=5 --node_abi_napi=napi --napi_build_version=0 --node_napi_label=node-v72' (1)
 npm WARN [email protected] No repository field.
 npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/fsevents):
 npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})

 npm ERR! code ELIFECYCLE
 npm ERR! errno 1
 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.
 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!     /home/andrewbruner/.npm/_logs/2020-05-07T18_52_06_591Z-debug.log

npm无法下载预先生成的二进制文件,因此无法使用node-gyp这是构建失败的地方。

请注意日志中的行: gyp ERR! stack Error: not found: make

似乎您尚未make安装。既然你在Debian上,你应该能够安装make运行:sudo apt-get install build-essential

以下问题已经对该问题进行了广泛的讨论:npm的安装时间失败,出现make not found错误

确保仔细查看错误消息:)

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章