Ubuntu – Google chrome dependency error – libnss3

administratorgoogle-chromeubuntu 12.04

I downloaded the .deb file from Google chrome website. Then started installing. But suddenly the software center shows a dependency not satisfied error. Some thing like given below.

Dependency not satisfiable:libnss3 (>=3.14.3)

Then I have tried all these.

But not yet solved..Still the same issue.

Please give an advice on this.

Best Answer

Got it solved from this link http://packages.ubuntu.com/precise/amd64/libnss3/download.

  • As it says added this line deb http://security.ubuntu.com/ubuntu precise-security main at the end of /etc/apt/sources.list
  • sudo apt-get update
  • This may cause gpg key error.
  • sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 8BAF9A6F. (Refer: https://askubuntu.com/questions/13065/how-do-i-fix-the-gpg-error-no-pubkey).
  • Again run sudo apt-get update if gpg error had occured.
  • sudo apt-get install libnss3.

This installed me with latest libnss3 and it solved issue with installing google-chrome.

Related Question