我在Lubuntu(ubuntu)14.10上安装VLC时遇到了一些问题:
sudo apt-get install vlc
该命令返回:
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.
vlc : Depends: vlc-nox (= 2.2.0-0ubuntu0.14.10.1) but 2.2.0+ppa3.2 is to be installed
Recommends: vlc-plugin-notify (= 2.2.0-0ubuntu0.14.10.1) but 2.2.0+ppa3.2 is to be installed
Recommends: vlc-plugin-samba (= 2.2.0-0ubuntu0.14.10.1) but 2.2.0+ppa3.2 is to be installed
E: Unable to correct problems, you have held broken packages.
我试图安装它推荐的两个软件包(它们已经安装好了)。
我也遵循了本指南,因为有些人遇到了类似的问题:http://ubuntuforums.org/showthread.php?t=2250015 并安装了xorg ppa无济于事。
有人可以帮我解释一下吗?
非常感谢!
版
答案 0 :(得分:1)
通常
之后sudo apt-get update && sudo apt-get upgrade
这样做:
sudo apt-get remove --purge vlc-nox vlc-plugin-notify vlc-plugin-samba
sudo apt-get install vlc
apt-get现在应该安装正确的依赖版本。
顺便说一下为什么不在https://askubuntu.com/张贴这个?