Why does google chrome not install in16.04 ubuntu?

29,149

Solution 1

This is a known bug in the Ubuntu 16.04 LTS (GNOME) Software application, but you can install Google Chrome in an alternative way ... open a terminal and execute the following commands :

echo "deb http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list  

wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -  

sudo apt-get update  

sudo apt-get install google-chrome-stable

Solution 2

Alternatively you can install it with gdebi package installer

sudo apt-get install gdebi

then right click your .deb file and open with > select Gdebi package installer

Share:
29,149

Related videos on Youtube

williamv
Author by

williamv

Updated on September 18, 2022

Comments

  • williamv
    williamv over 1 year

    In the latest version of Ubuntu LTS 16.04 google chrome will not install. once downloaded software install opens when install is clicked it immediately fails. It worked fine with Ubuntu 14 LTS.

  • kostyabakay
    kostyabakay almost 8 years
    It's the best solution.
  • SumNeuron
    SumNeuron almost 7 years
    I am running Gnome 3 16.04 LTS and I get the error E: Unable to locate package google-chrome-stable
  • awebartisan
    awebartisan over 6 years
    helped me again :)