Instale o mysql workbench no debian wheezy amd64

0

Eu tento instalar o mysql workbench no debian wheezy amd64 mas existem muitas dependências:

~$ sudo apt-get install mysql-workbench
Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
   mysql-workbench : Depends: libctemplate2 but it is not going to be installed
               Depends: libtinyxml2.6.2 but it is not going to be installed
               Depends: mysql-workbench-data (= 5.2.40+dfsg-2) but it is not going to be       installed
               Depends: python-mysql.connector but it is not going to be installed
               Recommends: ttf-bitstream-vera but it is not going to be installed
               Recommends: mysql-utilities but it is not going to be installed
 mysql-workbench-gpl : Depends: libctemplate0 but it is not installable
                   Depends: libmysqlclient16 (>= 5.1.21-1) but it is not installable
                   Depends: libzip1 (>= 0.8) but it is not installable
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

Quando tento instalar as libs, obtenho:

$ sudo apt-get install libzip1
...
Package libzip1 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'libzip1' has no installation candidate

Existem outras maneiras de instalar o mysql-workbench? Eu também baixei arquivos e fontes deb - mas não tive sucesso.

P.S.

Minha sources.list:

# deb cdrom:[Debian GNU/Linux 7.0.0 _Wheezy_ - Official amd64 NETINST Binary-1 20130504- 14:43]/ wheezy main

#deb cdrom:[Debian GNU/Linux 7.0.0 _Wheezy_ - Official amd64 NETINST Binary-1 20130504-14:43]/ wheezy main

# Line commented out by installer because it failed to verify:
deb http://security.debian.org/ wheezy/updates main
# Line commented out by installer because it failed to verify:
deb-src http://security.debian.org/ wheezy/updates main

# wheezy-updates, previously known as 'volatile'
# A network mirror was not selected during install.  The following entries
# are provided as examples, but you should amend them as appropriate
# for your mirror of choice.
#
deb http://ftp.debian.org/debian/ wheezy main
deb-src http://ftp.debian.org/debian/ wheezy main

deb http://ftp.debian.org/debian/ wheezy-updates main
deb-src http://ftp.debian.org/debian/ wheezy-updates main
    
por webprogrammer 02.06.2013 / 17:41

2 respostas

2

Na sua source.list, parece que você contém apenas o componente 'main'. Alguns pacotes estão sob o componente 'contrib', e essa é a razão pela qual o apt-get não pode instalar alguns pacotes (já que no DB do pacote do apt-get não há registro para esses pacotes).

Por favor, leia a página Wiki do Debian link para modificar sua source.list e fazer 'apt-get update'.

    
por 24.10.2014 / 18:29
0

De acordo com os documentos do MySQL página O MySQL Workbench não é suportado em plataformas Debian (ênfase adicionada):

mysql-workbench-community: MySQL Workbench (not available for Debian platforms)

    
por 11.12.2014 / 17:38