How to Install MySQL Workbench on Ubuntu 19.04

19.04mysql-workbenchsoftware installation

I tried to install MySQL Workbench by:

 apt-get install mysql-workbench-community

But I get the following errors and I am unable to install it manually:

Depends: libssl1.0.0 (>= 1.0.2~beta3) but it is not installable
Depends: libzip4 (>= 0.10) but it is not installable

How can I install it?

Best Answer

I solved this problem by installing the libzip package, directly from the deb package. I found at libzip4_1.1.2-1.1_amd64.deb.

Download and install libzip4, then install mysql-workbench from the apt or deb package, whichever you prefer.

Related Question