如何修复 quick.db 未安装?
How to fix quick.db is not installing?
我一直在尝试在我的 repl.it 项目上安装 quick.db 包,但每次我尝试时它都会崩溃并出现此错误:
我在 google 上尝试了所有方法,但没有任何效果。请帮助!
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 上所有用户信息都将 public - 这违反了不和谐的服务条款。
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
我一直在尝试在我的 repl.it 项目上安装 quick.db 包,但每次我尝试时它都会崩溃并出现此错误:
我在 google 上尝试了所有方法,但没有任何效果。请帮助!
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 上所有用户信息都将 public - 这违反了不和谐的服务条款。
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