I Am Having Trouble Installing Google Chrome On My Ubuntu 11.10. After Downloading It From http://www.google.com/chrome I Am Trying To Open It With A Double Click. Software Center Pops Up, I See The Loading Wheel, Then I Get A Message That The Package Cannot Be Opened. Any Help Would Be Appreciated.

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

Fire up a terminal using control+Alt+T, then write

sudo dpkg -install /Path/to/chrome.deb Ignore the errors, then: sudo apt-get install -f Then again: `sudo dpkg -install /Path/to/chrome.deb

The google chrome is missing dependencies; this fills those dependencies. You should be able to then run the package.

link|improve this answer
Also, all of these answers do essentially the same thing, just in different ways. – Wane5tars Oct 18 '11 at 15:45
feedback

In order to install Google Chrome you have to run this command in the terminal :

sudo apt-get install libxss1 libnspr4-0d libcurl3

Or just manually install those 3 packages :

  • libxss1
  • libnspr4-0d
  • libcurl3

And then you can install Google Chrome (I've got the same problem at my first install).

Hope this helps :D

link|improve this answer
Not Really, It Didn't Work. – Shahe Tajiryan Oct 18 '11 at 19:34
Strange... When I try to install Google Chrome after a fresh install of Ubuntu the same error always appears using Ubuntu Software Center to install it or "dpkg", those packages are not present and I need to install them manually so usually what I do is this : 1 - "sudo apt-get install libxss1 libnspr4-0d libcurl3" and then 2 - "sudo dpkg -i google_chrome.deb" and it works – aliasbody Oct 19 '11 at 6:42
solved problem for me. Thanks! – Zango Jan 12 at 17:26
feedback

It might be caused by missing packages in your repository. Try to switch to the main server.

See: https://help.ubuntu.com/community/Repositories/Ubuntu#Download_Server

Then re-run update-manager and install any updates.

I had a similar problem with Google Chrome.

link|improve this answer
feedback

Fire up a terminal Ctrl + Alt + T and write:

$ wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - 
$ sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
$ sudo apt-get update 
$ sudo apt-get install google-chrome-stable

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.