0

I am new to linux environment.I am using windows. Recenty I downloaded the google chrome and tried to install it but failed.Then I saw a tutorial which had this command

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

It will download the package again but I have already downloaded it using mozilla. Is there any terminal window command that I can use in place of this above command to access an install package from a specified path and install it?

The Tutorial link is: http://www.noobslab.com/2012/10/install-latest-google-chrome-in-ubuntu.html

Kaz Wolfe
  • 34,680
Neer
  • 103
  • 1
  • 2

1 Answers1

0

If what you've downloaded is .deb file, then what you do, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, navigate to the folder where the file was downloaded, most likely the Downloads folder, and run the commands below.

sudo dpkg -i <filename.deb>
Mitch
  • 109,787