Skip to content

Instantly share code, notes, and snippets.

@franckweb
Created February 9, 2020 21:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save franckweb/3f5f6d247b8e2f8c12f532f3e46d7ca7 to your computer and use it in GitHub Desktop.
Save franckweb/3f5f6d247b8e2f8c12f532f3e46d7ca7 to your computer and use it in GitHub Desktop.
Mysql Workbench for Ubuntu 16.04 installation
# MYSQL WORKBENCH installation
# download archive version for Ubuntu 16.04 from
# https://downloads.mysql.com/archives/workbench/
# running
sudo dpkg -i mysql-workbench-community-6.3.10-1ubuntu16.04-amd64.deb
# throws error
(Reading database ... 278976 files and directories currently installed.)
Preparing to unpack mysql-workbench-community-6.3.10-1ubuntu16.04-amd64.deb ...
Unpacking mysql-workbench-community (6.3.10-1ubuntu16.04) over (6.3.10-1ubuntu16.04) ...
dpkg: dependency problems prevent configuration of mysql-workbench-community:
mysql-workbench-community depends on libgeos-c1v5 (>= 3.4.2); however:
Package libgeos-c1v5 is not installed.
mysql-workbench-community depends on libhdf4-0-alt; however:
Package libhdf4-0-alt is not installed.
mysql-workbench-community depends on libmysqlclient20 (>= 5.7.11); however:
Package libmysqlclient20 is not installed.
mysql-workbench-community depends on libnetcdf11 (>= 4.0.1); however:
Package libnetcdf11 is not installed.
mysql-workbench-community depends on libpcrecpp0v5 (>= 7.7); however:
Package libpcrecpp0v5 is not installed.
mysql-workbench-community depends on libpq5; however:
Package libpq5 is not installed.
mysql-workbench-community depends on libxerces-c3.1; however:
Package libxerces-c3.1 is not installed.
mysql-workbench-community depends on libzip4 (>= 0.10); however:
Package libzip4 is not installed.
mysql-workbench-community depends on python-paramiko (>= 1.15.1); however:
Package pyth
dpkg: error processing package mysql-workbench-community (--install):
dependency problems - leaving unconfigured
Processing triggers for shared-mime-info (1.5-2ubuntu0.2) ...
Processing triggers for hicolor-icon-theme (0.15-0ubuntu1.1) ...
Processing triggers for gnome-menus (3.13.3-6ubuntu3.1) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu5.2) ...
Processing triggers for bamfdaemon (0.5.3~bzr0+16.04.20180209-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for mime-support (3.59ubuntu1) ...
Errors were encountered while processing:
mysql-workbench-community
# running
sudo apt install libgeos-c1v5
# throws error
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:
libgeos-c1v5 : Depends: libgeos-3.5.0 (>= 3.5.0) but it is not going to be installed
mysql-workbench-community : Depends: libhdf4-0-alt but it is not going to be installed
Depends: libmysqlclient20 (>= 5.7.11) but it is not going to be installed
Depends: libnetcdf11 (>= 4.0.1) but it is not going to be installed
Depends: libpcrecpp0v5 (>= 7.7) but it is not going to be installed
Depends: libpq5 but it is not going to be installed
Depends: libxerces-c3.1 but it is not going to be installed
Depends: libzip4 (>= 0.10) but it is not going to be installed
Depends: python-paramiko (>= 1.15.1) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
# running this fixes it
sudo apt-get -f install
# no error
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
# finally you can
sudo dpkg -i mysql-workbench-community-6.3.10-1ubuntu16.04-amd64.deb
# success
(Reading database ... 279150 files and directories currently installed.)
Preparing to unpack mysql-workbench-community-6.3.10-1ubuntu16.04-amd64.deb ...
Unpacking mysql-workbench-community (6.3.10-1ubuntu16.04) over (6.3.10-1ubuntu16.04) ...
Setting up mysql-workbench-community (6.3.10-1ubuntu16.04) ...
Processing triggers for shared-mime-info (1.5-2ubuntu0.2) ...
Processing triggers for hicolor-icon-theme (0.15-0ubuntu1.1) ...
Processing triggers for gnome-menus (3.13.3-6ubuntu3.1) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu5.2) ...
Processing triggers for bamfdaemon (0.5.3~bzr0+16.04.20180209-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for mime-support (3.59ubuntu1) ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment