以ibus-sunpinyin为例,该版本不存在。我不会将整个系统切换到sid分支,因此,我想从sid存储库下载单个软件包并按以下方式进行安装:
# Add the sid repository
sudo mv /tmp/sid.list /etc/apt/sources.list.d/
# Error: can't install because version conflicts of libc6:
# sudo apt-get install ibus-sunpinyin
# This is ok but it will upgrade a lot of mess from sid branch:
# sudo apt-get upgrade ibus-sunpinyin
# So, instead of apt-get install/upgrade, let me download & install the single package.
# However, this errored again because of version conflicts of libc6:
# apt-get install --download-only ibus-sunpinyin
## THEN, WHAT CAN I DO? ##
# Remove the sid repository.
sudo mv /etc/apt/sources.list.d/sid.list /tmp
# Install the single package.
sudo dpkg -i ./ibus-sunpinyin-x.x.x.deb
apt-get download ...
(对于apt-get 0.8.11+)或aptitude download ...
。但是,sudo dpkg -i ibus-sunpinyin-x.x.x.deb
由于sid依赖性,我也失败了。