2

I'm new to Ubuntu and not a programmer, although I am definitely learning a few things on these boards... I am running 14.04 and trying to download Google Chrome, but I get this error when I try to download it in the software center:

Dependency is not satisfiable: libappindicator1

Error

Any ideas? I can give you more information if necessary. Thanks!

TheWanderer
  • 19,395
  • 12
  • 50
  • 65

3 Answers3

4

When I installed Ubuntu for the first time, I had the same dependency problems as you while installing the Chrome .deb file (before running update)

Therefore, press Ctrl+Alt+T to go to a terminal and run:

sudo apt-get update
sudo apt-get upgrade

... as that will install required dependencies.

Then just install chrome from the Software Centre.

Fabby
  • 34,259
Ravan
  • 9,379
3

You need to run first this command:

sudo apt-get install libxss1 libappindicator1 libindicator7 

Follow this answer to install chrome

0

This should be fixed by running

sudo apt-get install -f

When you install 3rd party packages, the dependencies do not install automatically.

Pilot6
  • 90,100
  • 91
  • 213
  • 324