在 Ubuntu 上安装 DBSqlite 浏览器

在 Ubuntu 上安装 DBSqlite 浏览器

我尝试安装 DBSqlite BrowserUbuntu 及其衍生产品

安装后,我在终端中输入打开 Ubuntu 的命令:“sqlitebrowser”,出现以下崩溃:

qt.qpa.xcb: could not connect to display 
qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found. 
This application failed to start because no Qt platform plugin could be initialized. 
Reinstalling the application may fix this problem. 
Available platform plugins are: eglfs, linuxfb, minimal, minimalegl, offscreen, vnc, xcb.

找不到问题的整体解决方案。sudo apt-get install libxcb-xinerama0 等各种提示均无济于事

Ubuntu 22.04.3 
DB Browser for SQLite Version 3.12.2
Built for x86_64-little_endian-llp64, running on x86_64
Qt Version 5.12.8
Версия SQLite 3.35.5.

答案1

你应该添加 PPA每晚构建相反,由于sqlitebrowser包中的稳定的 PPA已经 2 年没有更新了(因此不包含 Ubuntu 22.04 的版本)。

卸载当前版本,并删除稳定的 PPA。然后添加不稳定的 PPA(其中有一个适用于 Ubuntu 22.04 的版本)

sudo add-apt-repository -y ppa:linuxgndu/sqlitebrowser-testing

然后更新并安装:

sudo apt-get update
sudo apt-get install sqlitebrowser

这应该会安装一个工作版本(尽管是“不稳定”的分支)。

如果你需要其他版本,你必须自己编译

相关内容