我一直在尝试安装 MySQL 5.7,但是在 Ubuntu 14.04 上安装其他软件包(例如)时出现了一些错误unzip
。phpmyadmin
当我尝试安装其他软件包时,出现了以下错误。
The following packages have unmet dependencies:
mysql-server : Depends: mysql-community-server (= 5.7.15-1ubuntu14.04) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
答案1
您是否从第三方下载了mysql-server(5.7)的deb包?
如果是,最可能的答案是您的 mysql-server 版本具有 Ubuntu 14.04 存储库中没有的依赖项。
一种方法是下载缺少的软件包(mysql-community-server (= 5.7.15-1ubuntu14.04)),然后手动安装
$ sudo apt-get install <missing-package-1> <missing-package-2> ...
。
或者删除 mysql 服务器,sudo apt-get update
然后从 Ubuntu 存储库重新安装一个。
一旦完成,您将无法重现该错误。
按照本教程中的步骤操作(如果您特别需要版本 5.7):
https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-ubuntu-14-04