从 Wheezy 中的测试 ppa (Jessie) 安装 mysql-workbench

从 Wheezy 中的测试 ppa (Jessie) 安装 mysql-workbench

如果可能的话,我想从测试分支安装一些软件包而不切换到它。大包是像xfce4和 之类的东西mysql-workbench。我通过创建一个包含 jessie/testing 的 deb 源的testing.list 文件来完成此操作。可悲的是,每当我尝试从测试分支安装大包时,就会发生以下情况:

  sem@debian:~$ sudo apt-get install mysql-workbench/testing

结果是

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Selected version '6.1.7+dfsg-1' (Debian:testing [amd64]) for 'mysql-workbench'
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:
 mysql-workbench : Depends: libpango-1.0-0 (>= 1.18.0) but it is not going to be installed
                   Depends: libpangocairo-1.0-0 (>= 1.14.0) but it is not going to be installed
                   Depends: libstdc++6 (>= 4.9) but 4.7.2-5 is to be installed
                   Depends: python:any (>= 2.6.6-7~)
                   Depends: mysql-workbench-data (= 6.1.7+dfsg-1) but 5.2.40+dfsg-2 is to be installed
                   Depends: python-pyodbc (>= 2.1.8) but 2.1.7-1+b1 is to be installed
E: Unable to correct problems, you have held broken packages.

我尝试了类似的通用解决方案sudo apt-get -f install,但没有运气。有人可以帮忙吗?

答案1

尝试这个:

  aptitude update

  aptitude install mysql-workbench

相关内容