kodi 在新服务器安装时未满足依赖关系

kodi 在新服务器安装时未满足依赖关系

因此,我尝试在全新安装的 Ubuntu Server 18.04 上安装 Kodi,我需要一些帮助

运行 sudo apt-get update 并添加 Kodi PPA 存储库后,安装后出现以下错误:

无法安装某些软件包。这可能意味着您请求了一个不可能的情况,或者如果您使用的是不稳定的发行版,则某些必需的软件包尚未创建或已从 Incoming 中移出。

以下信息可能有助于解决该情况:

以下软件包可能有未满足的依赖关系:

   Kodi : Depends: kodi-bin (>=.....final.obionic) but it is not going to be 
   installed

   Depends: kodi-bin (>=.....final.obionic.1) but it is not going to be 
   installed

   Depends: mesa-utils but it is not installable
   Depends: python-bluez but it is not installable or
            python-lightblue but it is not installable

   Depends: libmad0 but it is not installable
            libass9,5,4 but it is not installable
            libnfs11,8,4,1 but it is not installable
            libbluray1 but it is not installable
            libblueray2 but it is not installable
            libaacs0 but it is not installable
            libcec4 but it is not installable

  Recommends: libvdpau1 but it is not going to be installed
              i965-va-driver but it is not installable
              libva-intel-vaapi-driver but it is not installable
              libva1 but it is not installable

E:无法纠正问题,您持有破损的包裹

请帮忙!有什么建议吗?非常感谢!

答案1

这里有两个选择:

  1. 向 PPA 维护人员询问该问题;
  2. 使用kodi包裹来自存储库(bionic 有 17.6):

    sudo add-apt-repository universe
    
    sudo apt-get install ppa-purge
    sudo ppa-purge ppa:team-xbmc/ppa
    sudo add-apt-repository -r ppa:team-xbmc/ppa
    
    sudo apt-get install kodi
    

Kodi 官方网站说 17.6 Krypton 是推荐版本

建议使用 Kodi 17.6

相关内容