error: paste subprocess was killed by signal (Broken pipe)
按照提示执行
sudo apt-get -f install
sudo apt-get --fix-broken install
后 还是出错
解决方案:
cd /var/cache/apt/archives/
sudo dpkg -i --force-overwrite <出错的包名>
sudo apt -f install
解决方案2:
sudo apt-get autoremove <出错的包名>
sudo apt-get -f install
Comments | NOTHING