Tag: jhbuild

什么是安装Jhbuild的正确方法?

我正在运行ubuntu 14.04,我很难安装Jhbuild 。 当我遇到错误时,我遵循各种链接,并且它们总是一样的。 链接是: http://python-gtk-3-tutorial.readthedocs.org/en/latest/install.html https://wiki.gnome.org/HowDoI/Jhbuild https://developer.gnome.org/jhbuild/unstable/getting-started.html.en 第1步: jhbuild sanitycheck 安装之后,运行jhbuild sanitycheck错误,例如缺少某些内容以及一些目录问题,例如no directories或writable issues 。 所以我使用了synaptic package manager或sudo apt-get install命令来安装它们,并在提示时使文件夹可写。 执行这些步骤后,运行jhbuild sanitycheck成功运行,没有任何错误。 第2步: jhbuild build 当我运行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 -> […]

如何使用jhbuild安装“pygobject”时解决旧的GLIB错误

我正在尝试使用jhbuild安装jhbuild 。 而我收到此错误: configure: error: Package requirements (glib-2.0 >= 2.48.0) were not met: Requested ‘glib-2.0 >= 2.48.0’ but version of GLib is 2.38.2 所以,我已经从https://launchpad.net/ubuntu/%2Bsource/glib2.0安装了glib-2.0 ./configure make make install 安装此库后,我再次尝试并得到相同的错误。 所以我查一下如何解决旧的GLIB错误问题。 并尝试设置这样的两个变量 export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig/ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib 然后再次尝试但没有运气:( 我使用的是Ubuntu 14.04 LTS。