当我在 Ubuntu 12.04 上尝试以下命令时:
sudo apt-get install libgles2-mesa-dev-lts-raring
我得到以下输出:
The following packages have unmet dependencies:
libgles2-mesa-dev-lts-raring : Depends: libgles2-mesa-lts-raring
(= 9.1.7-1ubuntu2~precise1) but it is not going to be installed
Depends: libegl1-mesa-dev-lts-raring but it is not going to be installed
我sudo apt-get -f install
也尝试了命令但它也没有用,
我跟着此链接但我仍然无法修复它。有什么建议吗?
答案1
尝试以下命令:
sudo apt-get clean
sudo apt-get autoclean
sudo apt-get -f install
sudo dpkg --configure -a
sudo apt-get -f install
sudo apt-get -u dist-upgrade
sudo apt-get -o Debug::pkgProblemResolver=yes dist-upgrade
希望这对你有用