由于 Lubuntu quantal 的依赖问题,Xbmc 无法安装

由于 Lubuntu quantal 的依赖问题,Xbmc 无法安装

我有一台 mac mini g4,装有 Ubuntu 12.0,内核版本为 3.5.0-17-powerpc-smp(ppc)。

现在我想获取 XBMC 但无法安装它...

例子:

$ sudo apt-get install xbmc
Reading package lists... Done
Building dependency tree       
Reading state information... Done
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:
 xbmc : Depends: xbmc-bin (>= 3:12.2-1~ppa1~quantal) but it is not installable
        Depends: xbmc-bin (< 3:12.2-1~ppa1~quantal.1~) but it is not installable
E: Unable to correct problems, you have held broken packages.

通过软件中心我得到了这个:

The following packages have unmet dependencies:

xbmc: Depends: xbmc-bin (>= 3:12.2-1~ppa1~quantal) but it is not going to be installed
      Depends: xbmc-bin (< 3:12.2-1~ppa1~quantal.1~) but it is not going to be installed

还尝试过这个:

sudo apt-get install python-software-properties pkg-config

我尝试过 PPA renniewaldoc 和 wsnipex,但没有成功。

答案1

sudo apt-get install python-software-properties pkg-config
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:team-xbmc/ppa
sudo apt-get update
sudo apt-get install xbmc

http://wiki.xbmc.org/index.php?title=安装XBMC_for_Linux

答案2

我能够使用以下命令安装它:

sudo aptitude install xbmc

Aptitude 会尽力解决某些问题。它会在解决过程中为您提供一些选项,您必须做出正确的选择。

相关内容