我在 Ubuntu 12.04 中使用 ibus-avro 和 ibus 输入法来写孟加拉语。最近我将 Ubuntu 从 12.04 升级到了 12.10,现在 ibus-avro 已被删除。我尝试再次安装它,但收到以下错误消息
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
ibus-avro : Depends: gir1.2-gjsdbus-1.0 but it is not installable
答案1
最后我终于可以安装它了。我已经从源代码编译了它,没有安装gir1.2-gjsdbus-1.0
,到目前为止它运行正常。
首先使用代码安装下面提到的软件包。
sudo apt-get 安装 git ibus libibus-1.0-dev automake autoconf gjs gir1.2-ibus-1.0
现在安装以下代码来下载、编译和安装ibus-avro
git 克隆 git://github.com/sarim/ibus-avro.git
cd ibus-avro
aclocal && autoconf && automake --add-missing
./configure --prefix=/usr
sudo make install
我从这个链接找到了这个说明
https://github.com/sarim/ibus-avro/blob/master/README.md
你可能注意到我省略了 Sarim 在问题评论中提到的包“gir1.2-gjsdbus-1.0”,你可以在以下链接中查看
https://github.com/sarim/ibus-avro/issues/37
谢谢
答案2
我从这里找到了解决方案......只需按照它告诉你做的并按照描述编译源代码...... http://forum.linuxdesh.org/thread-1088.html