当我试图安装VLC媒体播放器时,会弹出以下内容:
The following packages have unmet dependencies:
vlc: Depends: vlc-nox (= 2.0.3-0ubuntu0.12.04.1) but 2.0.3-0ubuntu0.12.04.1 is to be installed
Depends: libavcodec-extra-53 (>= 4:0.8-1~) but 4:0.8.3ubuntu0.12.04.1 is to be installed
Depends: libavutil-extra-51 (>= 4:0.8-1~) but 4:0.8.3ubuntu0.12.04.1 is to be installed
Depends: libc6 (>= 2.15) but 2.15-0ubuntu10 is to be installed
Depends: libfreetype6 (>= 2.2.1) but 2.4.8-1ubuntu2 is to be installed
Depends: libgcc1 (>= 1:4.1.1) but 1:4.6.3-1ubuntu5 is to be installed
Depends: libqtcore4 (>= 4:4.8.0) but 4:4.8.1-0ubuntu4.2 is to be installed
Depends: libqtgui4 (>= 4:4.7.0~beta1) but 4:4.8.1-0ubuntu4.2 is to be installed
Depends: libstdc++6 (>= 4.6) but 4.6.3-1ubuntu5 is to be installed
Depends: libva-x11-1 (> 1.0.15~) but it is not going to be installed
Depends: libva1 (> 1.0.15~) but it is not going to be installed
Depends: libxcb-composite0 but it is not going to be installed
Depends: libxcb-randr0 (>= 1.1) but it is not going to be installed
Depends: libxcb-xv0 (>= 1.2) but it is not going to be installed
Depends: zlib1g (>= 1:1.2.3.3.dfsg) but 1:1.2.3.4.dfsg-3ubuntu4 is to be installed
谁能告诉我这是什么意思吗?
我怎么才能绕过它?(如有可能)
在安装大多数程序时,我也会收到类似的弹出窗口。
我使用的是Ubuntu12.04 64位.
任何帮助都将不胜感激。
发布于 2012-08-29 23:55:22
您需要安装未满足的依赖项。
您需要安装:
libavcodec53 libavcodec-额外-53 libavformat53安装此libavcodec53,libgsm1 libschroedinger-1.0-0,libavcodec53,libavcodec-额外-53 libavformat53,gStreer0.10- ffmpeg,gStreer0.10-插件-坏,ffmpeg
运行以下命令:
sudo apt-get install libgsm1 libschroedinger-1.0-0 libavcodec53 \
libavcodec-extra-53 libavformat53 gstreamer0.10-ffmpeg \
gstreamer0.10-plugins-bad ffmpeg
如果它说要安装任何未满足的依赖项,那么在安装完所有这些依赖项之后,首先安装它们,那么您应该能够安装vlc。
我希望它能帮到你
https://askubuntu.com/questions/180635
复制