简体   繁体   中英

unable to install libzip4 on ubuntu 19.04

trying to install libzip4 on ubuntu 19.04 for mysql-workbench dependency

Install method:

sudo apt install./mysql-workbench-community_8.0.16-1ubuntu18.04_amd64.deb

error message:

mysql-workbench-community: Depends: libzip4 (>= 0.10) but it is not installable

apt install list:

sudo apt install libzip libzip5 libzip-dev libzipios++0v5 libzipios++-dev libzipios++-doc libzip-ocaml libzip-ocaml-dev

Tried installing php-zip with the hopes it would install libzip4 but that was fails

I am not sure of any other way to solve this issue if anyone could provide guidance that would be amazing

As suggested by the name mysql-workbench-community_8.0.16-1ubuntu18.04_amd64.deb was packaged for Ubuntu 18.04 which has libzip4 . You can add the Ubuntu 18.04 package repository to your Ubuntu 19.04 installation like so:

$ echo deb http://archive.ubuntu.com/ubuntu/ bionic universe | sudo tee /etc/apt/sources.list.d/bionic.list
$ sudo apt-get update

And you will then be able to install with:

$ sudo apt install ./mysql-workbench-community_8.0.16-1ubuntu18.04_amd64.deb

snap install mysql-workbench-community

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM