我试图遵循这个指导。我有一个运行 Ubuntu 12.04 的虚拟机,它目前装有 Sab+、Nzbdrone、CouchPotato 和 MariaDB。我正在尝试安装无头 XBMC,以便它可以全天候运行并不断更新,而且我不必从托管 xbmc 的其他计算机或客户端之一运行更新库命令。因此,我尝试运行以下命令
sudo apt-get update && sudo apt-get upgrade -y && sudo apt-get dist-upgrade -y && sudo reboot
sudo apt-get install python-software-properties software-properties-common
sudo add-apt-repository ppa:team-xbmc/unstable
sudo add-apt-repository ppa:team-xbmc/xbmc-ppa-build-depends
sudo apt-get update
sudo apt-get build-dep xbmc
这就是我发现问题的地方。这是最后一行的结果。
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'libglew1.6-dev' instead of 'libglew-dev'
Note, selecting 'libsamplerate0-dev' instead of 'libsamplerate-dev'
The following packages have unmet dependencies: libmysqlclient-dev : Depends: libmysqlclient18 (= 5.5.37-0ubuntu0.12.04.1) but 10.0.11+maria-1~precise is to be installed
E: Build-dependencies for xbmc could not be satisfied.
关于如何进行有什么想法吗?