1 Answers1

0

Well, this is why you use software center or apt-get to install packages rather then dpkg. dpkg does NOT resolve dependencies.

You should NOT be downloading and installing random .deb from across the internet, use the ubuntu repositories.

See How do I install applications in Ubuntu? and https://help.ubuntu.com/community/InstallingSoftwar

To install the dependencies, run:

sudo apt-get install -f 

and you should be good to go.

Panther
  • 104,528