我使用Quick.DB作为数据库,为我的discord.js机器人获取和发送数据。然而,当我尝试安装我的依赖项时,它在安装better-sqlite3时返回这个错误,它试图编译安装脚本来创建绑定文件,但过了一段时间它就返回了这个错误。我使用repl.it编写这个机器人的代码,因为我发现它很灵活。
> better-sqlite3@7.1.5 install /home/runner/azeliav2-2/node_modules/better-sqlite3
> prebuild-install || npm run build-release
prebuild-install WARN install /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required by /home/runner/azeliav2-2/node_modules/better-sqlite3/build/Release/better_sqlite3.node)
> better-sqlite3@7.1.5 build-release /home/runner/azeliav2-2/node_modules/better-sqlite3
> node-gyp rebuild --release
make: Entering directory '/home/runner/azeliav2-2/node_modules/better-sqlite3/build'
TOUCH b857c92884e9598d609f6be182a2595df7a8e00f.intermediate
ACTION deps_sqlite3_gyp_locate_sqlite3_target_extract_sqlite3 b857c92884e9598d609f6be182a2595df7a8e00f.intermediate
TOUCH Release/obj.target/deps/locate_sqlite3.stamp
CC(target) Release/obj.target/sqlite3/gen/sqlite3/sqlite3.o
cc: internal compiler error: Killed (program cc1)
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-6/README.Bugs> for instructions.
deps/sqlite3.target.mk:183: recipe for target 'Release/obj.target/sqlite3/gen/sqlite3/sqlite3.o' failed
make: *** [Release/obj.target/sqlite3/gen/sqlite3/sqlite3.o] Error 4
rm b857c92884e9598d609f6be182a2595df7a8e00f.intermediate
make: Leaving directory '/home/runner/azeliav2-2/node_modules/better-sqlite3/build'
gyp ERR! build error
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack at ChildProcess.onExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:194:23)
gyp ERR! stack at ChildProcess.emit (events.js:314:20)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:276:12)
gyp ERR! System Linux 5.4.0-1042-gcp
gyp ERR! command "/usr/local/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" "--release"
gyp ERR! cwd /home/runner/azeliav2-2/node_modules/better-sqlite3
gyp ERR! node -v v12.22.1
gyp ERR! node-gyp -v v5.1.0
gyp ERR! not ok
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! better-sqlite3@7.1.5 build-release: `node-gyp rebuild --release`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the better-sqlite3@7.1.5 build-release script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm WARN Local package.json exists, but node_modules missing, did you mean to install?
npm ERR! A complete log of this run can be found in:
npm ERR! /home/runner/.npm/_logs/2021-05-02T03_56_51_256Z-debug.log
[ ......] | install: info lifecycle better-sqlite3@7.1.5~install:[ ......] | install: info lifecycle better-sqlite3@7.1.5~install:[ ......] | install: info lifecycle better-sqlite3@7.1.5~install:[ ......] | install: info lifecycle better-sqlite3@7.1.5~install:[ ......] | install: info lifecycle better-sqlite3@7.1.5~install:[ ......] | install: info lifecycle better-sqlite3@7.1.5~install:npm WARN hello-express@0.0.1 No repository field.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! better-sqlite3@7.1.5 install: `prebuild-install || npm run build-release`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the better-sqlite3@7.1.5 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/runner/.npm/_logs/2021-05-02T03_56_52_435Z-debug.log发布于 2021-05-05 00:53:44
我已经回答过这个here了。找不到GLIBC_2.29错误导致libc6包过期。您需要运行
sudo apt-get update
sudo apt-get install libc6有关这方面的更多信息,请访问askubuntu.com
但您需要sudo权限。您在repl.it上没有sudo权限。
你无论如何都不应该在repl.it上使用quick.db,因为在repl.it上所有的用户信息都会公开-这违反了不一致的服务条款。
Repl.它的限制是,除了.env文件之外,你不能在免费帐户上隐藏文件而不让公众看到。这意味着,如果您使用基于文件或基于sqlite的数据库(例如enmap、quick.db、nedb),您的文件将是可见的。因为这违反了不一致的服务条款(暴露潜在的用户数据),所以不要使用这些模块或json文件来存储数据。相反,您可以使用Repl.It数据库系统或外部数据库服务器(如Atlas Mongo或Firebase )来存储数据。anidiots.guide
https://stackoverflow.com/questions/67352932
复制相似问题