15

I am trying to install Google Chrome,for that I downloaded a google-chrome-stable_current_i386.deb file.

When I try to install using install in terminal

sudo install google-chrome-stable_current_i386.deb

It gives following error.

install: missing destination file operand after ‘google-chrome-stable_current_i386.deb’ Try 'install --help' for more information.

Alaa Ali
  • 31,535
user2437432
  • 261
  • 1
  • 2
  • 5

2 Answers2

30

Either you can install using terminal as previous answers say,

sudo dpkg -i google-chrome-stable_current_i386.deb

Or else, You can double click the downloaded .deb file and it will be opened in Ubuntu Software Center(If you are using ubuntu). Then you can install it clicking on install button.

Deepal
  • 1,656
  • 5
  • 19
  • 26
  • I got Package libappindicator1 is not installed. . So I have to download all dependencies too offline, if I am not having network on the target machine? – Mahesha999 Jul 12 '17 at 14:32
4

You can install it using the dpkg command:

sudo dpkg -i google-chrome-stable_current_i386.deb

Check dpkg --help for more information.

Alaa Ali
  • 31,535
Sathish
  • 751
  • I got Package libappindicator1 is not installed. . So I have to download all dependencies too offline, if I am not having network on the target machine? – Mahesha999 Jul 12 '17 at 14:32