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?
so this were the steps I took in order to install it correctly:
Download the 2 Libraries that are needed and install them:
Go to the MySQL Workbench Download Page and Download (At least for now) the latest version for Ubuntu 18.04 and install it. It should install correctly without any issues.
Note that as of the writing of this answer (April 25, 2019), the package
mysql-workbench
ormysql-workbench-community
do not exist in the 19.04 repositories (Even with universe repositoy enabled). You can see here that there are not packages created yet: https://launchpad.net/ubuntu/disco/+source/mysql-workbenchI 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 installmysql-workbench
from the apt or deb package, whichever you prefer.Even if you check the download site (https://dev.mysql.com/downloads/workbench/), you don't see the released version for 19.04. Looks like we'll have to wait for the version to be released. That is totally a bummer.
Also I can confirm that the 18.10 installer doesn't work on the 19.04
my libzip4, libzip5 and libzip-dev are installed and have not resolved.
i solved this problem like this:
1-backup or remove these files: sudo rm /usr/local/lib/libcrypto.so.1.0.0 sudo rm /usr/local/lib/libssl.so.1.0.0
2-locate them in your system: sudo locate libcrypto.so.1.0.0 sudo locate libssl.so.1.0.0
3-recreate symbolic links for located them: sudo ln -s /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/local/lib/libcrypto.so.1.0.0 sudo ln -s /usr/lib/x86_64-linux-gnu/libssl.so.1.0.0 /usr/local/lib/libssl.so.1.0.0
Just noticed that they took away the 18.10 installer from the download site. Not sure why. May be they're working on getting the 19.04 version out.
After installing these packages:
https://packages.ubuntu.com/cosmic/amd64/libssl1.0.0/download
https://packages.ubuntu.com/cosmic/amd64/libzip4/download
I installed python and it worked
sudo apt install python
followed bysudo apt --fix-broken install
andsudo apt update
I was able to install workbench designed for ubuntu 18.04 0n ubuntu 19.
I installed it by using: gdebi mysql-workbench-community_8.0.16-1ubuntu18.04_amd64.deb
It looks up dependencies and installs them, see http://manpages.ubuntu.com/manpages/bionic/man1/gdebi.1.html for more info