我已经尝试安装 Polybar 很长时间了。我设法找到了两个可以使用的选项。
1. 尝试按源代码构建程序(使用来自 github 的说明)。
我试着做这一切,直到我碰到一堵砖墙,叫做 cmake .. ,它返回这个......
-- No build type specified; using RelWithDebInfo
-- Using supported compiler GNU-5.4.0
-- Checking for module 'xcb-xkb'
-- No package 'xcb-xkb' found
CMake Error at /usr/share/cmake-3.5/Modules/FindPkgConfig.cmake:367 (message):
A required package was not found
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/FindPkgConfig.cmake:532 (_pkg_check_modules_internal)
cmake/common/utils.cmake:235 (pkg_check_modules)
cmake/03-libs.cmake:17 (querylib)
CMakeLists.txt:17 (include)
-- Configuring incomplete, errors occurred!
See also "/home/textman/polybar/build/CMakeFiles/CMakeOutput.log".
See also "/home/textman/polybar/build/CMakeFiles/CMakeError.log".
我查找 xcb-xkb 下载它,经过一番研究,我意识到我不知道如何下载那个包。我找到了这个名为 xcb.freedesktop (.org) 的网站,但我找不到 xcb-xkb。
2. 只需从 GetDeb 安装它:http ://www.getdeb.net/app/Polybar
在我将 GetDeb 添加为存储库后,我点击了大安装按钮,它询问我是否要安装它。我确认,然后它返回:
The following packages have unmet dependencies:
polybar: Depends: libgcc1 (>= 1:3.0) but 1:6.0.1-0ubuntu1 is to be installed
Depends: libiw30 (>= 30~pre1) but 30~pre9-8ubuntu1 is to be installed
Depends: libstdc++6 (>= 6) but 5.4.0-6ubuntu1~16.04.4 is to be installed
Depends: libxcb-xrm0 (>= 0.0.0) but it is not going to be installed
显然,我需要各种版本的 Ubuntu 来安装这些依赖项,除了显然不会安装的 libxcb-xrm0。
该网站本身说有一个 Xenial 版本,我什至尝试从 UbuntuUpdates 获取 .deb 包,但是每当我单击“安装”按钮时,什么都没有发生。
我是一个新手,我已经使用 Ubuntu 一个星期了,尽管我一直在工作和学习它,但我仍然遇到依赖关系和整个 xcb 问题等问题。
把我逼疯了,我为此创建了一个完整的 askubuntu 帐户......
此外,我无法发布所有网站的所有链接,因为我显然没有任何声誉。
如果没有 .deb 可供您使用,我会从源代码编译。
要从源代码编译,您需要安装依赖项。不仅是包,还有 -dev 包中的标头。
谷歌搜索包名...
https://www.google.com/search?q=ubuntu+dependencies+xcb-xkb&oq=ubuntu+dependencies+xcb-xkb
你可以看到它在 libxcb-xkb-dev 所以
并为每个依赖项打开。
另请参阅https://help.ubuntu.com/community/CompilingEasyHowTo这是一个很长的页面,但会引导您了解编译所需的知识。