उदाहरण के लिए ibus-sunpinyin लें, जो निचोड़ रिलीज में मौजूद नहीं है। मैं पूरे सिस्टम को सिड ब्रांच में स्विच करने नहीं जा रहा हूं, इसलिए, मैं सिंगल पैकेज को साइड रिपॉजिटरी से डाउनलोड करना चाहता हूं और इसे इंस्टॉल करना चाहता हूं:
# 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
निर्भरता के कारण विफल रहा हूँ ।