-2

I want to install Google Chrome on Ubuntu but I am not been able to do so.

I know there are answers for my question on other posts but they didn't solve my problem.

Problem is that after I download the google chrome for Debian/Ubuntu but when I click install, nothing happens.

Thanks in advance!

Here is my installation screen pic!

And when i try sudo dpkg -i google-chrome-stable_current_amd64.deb shows: enter image description here

And Here is my downloads folder where chrome is present but Ubuntu doesn't detectenter image description here

Anonymous
  • 111

3 Answers3

11

First Install Gdebi by

sudo apt-get install gdebi

After installing gdebi try installing google-chrome with gdebi

you can use gdebi to install deb file in terminal or graphical

in terminal way you can install the deb by sudo gdebi in your case it is

sudo gdebi google-chrome-stable_current_amd64.deb

If the file is in your downloads folder, run this instead:

sudo gdebi ~/Downloads/google*

If the file is in /tmp run this instead:

sudo gdebi /tmp/google*.deb

GDebi will automatically resolve any dependencies and install the deb file

mchid
  • 44,904
  • 8
  • 102
  • 162
1

Option 1: pure terminal

You were in your home directory (indicated with ~) in the terminal window. However, the file is located in ~/Downloads directory. So write sudo dpkg -i Downloads/goo and press Tab. It will complete the filename (if it’s not ambiguous – and it won’t be ambiguous in your almost empty Downloads directory).

Option 2: involving GUI interactions

Another option is to write sudo dpkg -i and drag the file from Nautilus into Terminal window. This should fill in the full path.

Melebius
  • 11,750
0

If you are not very particular about the Chrome then you can also try Chromium Browser. It is available in the Ubuntu Software Center.

RD017
  • 906