Need to install Google Chrome on Linux from the command line? Whether you're logged in remotely or using a terminal window, it's easy to install Chrome using wget to download the installer and dpkg to run it. This wikiHow article will walk you through installing Chrome from the terminal on Ubuntu or Debian Linux.

Steps

  1. 1
    Press Ctrl+Alt+T to open a terminal window.
  2. 2
    Update the package index. To make sure your system is up-to-date, run these two commands:
    • Type sudo apt update and press the Enter key.[1]
    • Type sudo apt upgrade and press the Enter key.
    Advertisement
  3. 3
    Install wget if you don't already have it. This is the tool you will use to download the Chrome package from the prompt.
    • Type wget --version and press the Enter key. If you see a version number, just skip to the next step now.
    • If you get an error because wget is not installed, type sudo apt install wget and press the Enter key to install it.
  4. 4
    Use wget to download the Chrome package. Since there is no longer a 32-bit version of Chrome, you'll need the 64-bit version. To get it the latest stable version, run this command:
    • Type wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb and press the Enter key.
    • After the package is finished downloading, you'll return to the command prompt.
  5. 5
    Install the downloaded Chrome package. To install Chrome from the downloaded package, use the following command:
    • Type sudo dpkg -i google-chrome-stable_current_amd64.deb and press Enter.
  6. 6
    Fix errors that occurred in the Chrome installation. If you see any errors during the installation, type sudo apt-get install -f and press the Enter key to repair them.
  7. 7
    Type google-chrome and press Enter to launch Chrome.
  8. Advertisement

Community Q&A

  • Question
    I downloaded Google Chrome for Linux in the terminal and launched it by typing "google-chrome," but it said "Command not found." What do I do?
    Community Answer
    Community Answer
    You have to install it. Downloading is only half the job. Only installed packages can be run from terminal. In Unix systems it usually means it's extracted into a specific path, which is usually done by the package manager itself.
  • Question
    I couldn't get the second command to work.
    Anuj_Kumar1
    Anuj_Kumar1
    Community Answer
    Make sure you have recent version of Linux and active internet connection. Old version of Linux have old repository links which may not be available.
  • Question
    1. Is it necessary to always open Google Chrome from terminal, and 2. Must the terminal screen be kept open for Google Chrome to keep working?
    Arrogance
    Top Answerer
    No. Chrome should show up in the applications of menu of most desktop environments. You can also launch it from a simple run prompt in most environments by pressing Alt-F2, and then entering google-Chrome in the box. Normally, closing the terminal would close Chrome (or most applications launched from it). If you launch google-chrome as a background process (using the command "google-chrome &") and then disown the process (running "disown #", where # is the PID of the process), you can close the terminal and leave Chrome running. Alternatively, launch Chrome with nohup ("nohup google-chrome") and then close the terminal.
Advertisement

About This Article

Nicole Levine, MFA
Written by:
wikiHow Technology Writer
This article was co-authored by wikiHow staff writer, Nicole Levine, MFA. Nicole Levine is a Technology Writer and Editor for wikiHow. She has more than 20 years of experience creating technical documentation and leading support teams at major web hosting and software companies. Nicole also holds an MFA in Creative Writing from Portland State University and teaches composition, fiction-writing, and zine-making at various institutions. This article has been viewed 509,153 times.
How helpful is this?
Co-authors: 9
Updated: March 14, 2023
Views: 509,153
Article SummaryX

1. Press Control + Alt + T to open a terminal.
2. Type "sudo apt update and press" Enter.
3. Type "sudo apt upgrade" and press Enter.
4. Install wget if you don't already have it.
5. Use "wget" to download the latest page from Google.
6. Use "sudo dpkg –I" to install the package.

Did this summary help you?
Advertisement