我是Linux新手。我需要安装Python 3,在此之前,我应该安装和构建gtk+。我手动安装了大部分依赖项,因为它会引发错误。当前,当我给出命令jhbuild build时,我会得到这个错误。
W: Circular dependencies detected: meta-gnome-core -> meta-gnome-core-shell -> dconf -> glib -> gvfs -> glib
W: Circular dependencies detected: meta-gnome-core -> meta-gnome-core-shell -> dconf -> glib -> glib-networking -> glib
W: Circular dependencies detected: meta-gnome-core -> meta-gnome-core-shell -> dconf -> glib -> dconf
W: Circular dependencies detected: meta-gnome-core -> meta-gnome-core-shell -> evolution-data-server -> gtk+ -> adwaita-icon-theme -> gtk+
W: gnome-control-center has a dependency on unknown "network-manager-applet" module
W: gnome-control-center has a dependency on unknown "network-manager-applet" module
Required packages:
System installed packages which are too old:
plymouth (ply-boot-client.pc, required=0.8.9, installed=0.8.8)
gnutls (gnutls.pc, required=3.1, installed=2.12.23)
libsystemd-daemon (libsystemd-daemon.pc, required=210, installed=204)
libsystemd-login (libsystemd-login.pc, required=210, installed=204)
No matching system package installed:
libsystemd (libsystemd.pc, required=210)
jhbuild build: Required system dependencies not installed. Install using the command 'jhbuild sysdeps --install' or to ignore system dependencies use command-line option --nodeps我该怎么办?另外,如果有更好的方法来安装PythonPython3,那么也请在这方面给出建议。
我在Ubuntu14.04和一个大学代理后面。
发布于 2015-08-29 17:28:45
就像你说的
我是Linux新手
答案很简单:忘了它吧。
使用jhbuild构建最新的GNOME/GTK3 3版本已经是老生常谈了。因此,升级到最新的Ubuntu版本。您可以自己编译每个版本。但相信我,这对你来说是错误的。
System installed packages which are too old:
plymouth (ply-boot-client.pc, required=0.8.9, installed=0.8.8)
gnutls (gnutls.pc, required=3.1, installed=2.12.23)
libsystemd-daemon (libsystemd-daemon.pc, required=210, installed=204)
libsystemd-login (libsystemd-login.pc, required=210, installed=204)您需要更新的开发库。在这种情况下,您必须自己编译它,因为您的代码是可靠的。
No matching system package installed:
libsystemd (libsystemd.pc, required=210)库libsystemd-dev是不可信任的。转到开发人员页面,下载源代码并自己编译。
https://askubuntu.com/questions/667159
复制相似问题