Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have been trying to install quick.db package on my repl.it project but on every time I try that it just crashes and gives this error: enter image description here

I tried everything on google nothing worked. please help!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
341 views
Welcome To Ask or Share your Answers For Others

1 Answer

GLIBC_2.29 not found error is causing outdated libc6 package. You would need to run

sudo apt-get update
sudo apt-get install libc6

more about that on askubuntu.com
But you would need sudo privileges. You do not have sudo privileges on repl.it.
You should not use quick.db anyway on repl.it, because on repl.it all users information will public - this is against discord terms of service.

Repl.it's limitation is that you cannot hide files from the public eye on free accounts, except for the .env file. This means, if you were to use a file-based or sqlite-based database (such as enmap, quick.db, nedb) your files would be visible. Since this is against the Discord Terms of Service (exposing potential user data), do not use these modules or json files to store data. Instead, you can use the Repl.It Database system to store data, or an external database server like Atlas Mongo, or Firebase. anidiots.guide


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...