如何删除 acroread

如何删除 acroread

尝试安装 Acroread 后,我尝试将其删除,但没有成功,

消息如下。请帮助我,因为软件中心被禁用了

sudo apt-get remove acroread
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Virtual packages like 'acroread' can't be removed
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 acroread-bin:i386 : Depends: libfontconfig1:i386 (>= 2.9.0) but 2.8.0-3ubuntu9.1 is to be installed
                     Depends: libxml2:i386 (>= 2.6.27) but it is not going to be installed
                     Depends: libxt6:i386 but it is not going to be installed
 google-chrome-stable:i386 : Depends: xdg-utils:i386 (>= 1.0.2) but it is not installable
 libxml2 : Depends: liblzma5 (>= 5.1.1alpha+20120614) but 5.1.1alpha+20110809-3 is to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

答案1

1)首先,尝试用这个命令纠正你的apt-get错误:

sudo apt-get -f install

2)可选步骤:升级你的系统可能会有用:

sudo apt-get upgrade && sudo apt-get dist-upgrade

3)然后删除包:

sudo apt-get remove --purge acroread*

4)最后,删除所有可能需要卸载的依赖项:

sudo apt-get autoremove 

相关内容