How to reinstall Mysql Workbench in Ubuntu 16.04?

0

Recently I updated Ubuntu from 14.04 to 16.04 and after the update, which did not show any errors, the Mysql-Workbench application that was installed disappeared and even after trying to update the command has the following output.

Command:

sudo apt-get install mysql-workbench

Output:

Alguns pacotes não puderam ser instalados. Isto pode significar que
você solicitou uma situação impossível ou, se você está usando a
distribuição instável, que alguns pacotes requeridos não foram
criados ainda ou foram retirados da "Incoming".
A informação a seguir pode ajudar a resolver a situação:

Os pacotes a seguir têm dependências desencontradas:
 mysql-workbench : Depende: libpcrecpp0v5 (>= 7.7) mas não será instalado
                   Recomenda: mysql-utilities mas não será instalado
E: Impossível corrigir problemas, você manteve (hold) pacotes quebrados.

I've tried using SYNAPTIC but I did not succeed.

    
asked by anonymous 13.08.2018 / 19:41

1 answer

0

As the last line of the error says:

E: Impossível corrigir problemas, você manteve (hold) pacotes quebrados.

Your system has broken packages, so before installing workbench you should fix those packages that have broken dependencies.

Some correction alternatives:

  • Run update (thus updating the list of programs in cache ):

    sudo apt-get update

  • Reconfigure the packages, forcing (% with_%) the reconstitution of the packages:

    -f

  • Reconfigure packages using sudo apt-get -f install :

    dpkg

One of these alternatives should work for you, after that you can install sudo dpkg --configure -a normally:

workbench

    
13.08.2018 / 20:39