Skip to content

Instantly share code, notes, and snippets.

@codedeep79
Last active August 24, 2022 04:15
Show Gist options
  • Select an option

  • Save codedeep79/e8139a3db90009d32fec51e4ae5e8d49 to your computer and use it in GitHub Desktop.

Select an option

Save codedeep79/e8139a3db90009d32fec51e4ae5e8d49 to your computer and use it in GitHub Desktop.
How to install mysql workbench on linux debian 10

I am trying to install MySQL Workbench on my Google Pixelbook. It runs Linux debian 10 buster.

So I run these commands:

sudo apt-get update
sudo apt-get install mysql-workbench

I get this error:

Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 mysql-workbench : Depends: gdal-abi-2-1-2
                   Depends: libgdal20 (>= 2.0.1) but it is not going to be installed
                   Depends: libmysqlcppconn7v5 (>= 1.1.7) but it is not going to be installed
                   Recommends: ttf-bitstream-vera but it is not going to be installed
                   Recommends: mysql-utilities but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Solution:

apt update
apt install snapd
snap install core
snap install mysql-workbench-community
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment