How to Install Google Chrome in Arch-based Linux Distributions?
Last Updated :
05 Oct, 2021
Google Chrome is a world-wide very popular browser. Google Chrome is not an open-source project, hence chrome is not preinstalled on Linux systems. The installation of Google Chrome on Linux distributions like Ubuntu is very easy. For Arch Linux and Arch-based distributions, Google Chrome is available on Arch User Repository(AUR).
We will install google-chrome on arch Linux by two methods.
Method 1: Installing Google Chrome with an AUR Helper
For installation of packages from the AUR, We can use the AUR helper to install Google Chrome. To install chrome on Arch Linux, first, we need to install the AUR helper on the system.
Installing AUR helper
There are many AUR helpers by using which we can install the AUR packages, but for this tutorial, we are going to use yay AUR helper. To install the yay AUR helper, first, we need to install the git and base-devel group package on the system. So to install the git on the system, use the following command:
sudo pacman -S --needed base-devel git
To install yay on the Arch, use the following commands:
git clone https://aur.archlinux.org/yay-git.git
cd yay-git
makepkg -sri
Now we have installed the yay AUR helper on the system. yay provide similar flags like Pacman to manage the packages. So to install the packages using the yay use -S option with yay command.
Installing chrome:
To install the google-chrome on Arch with yay, use the following command:
yay -S google-chrome
Yay shows all package related to the Google Chrome and ask to choose which package have to install. So we have chosen default (1) package.
Upgrading chrome with yay:
Packages installed with yay are not upgraded with pacman command, we have to upgrade the chrome with the yay AUR helper. To update the package use -Suy option with yay command.
yay -Suy
This command will update all packages.

Method 2: Install Google Chrome without an AUR Helper
We can install the google-chrome without using the AUR helper by cloning the repo from the AUR.
Installing dependency:
To install the packages from AUR we must have installed the git and base-devel group package on the system. To install these packages, use the following command:
sudo pacman -S --needed base-devel git
Installing chrome:
To install the chrome, clone the google-chrome AUR repo. Use the following command to install Google Chrome:
git clone https://aur.archlinux.org/google-chrome.git
cd google-chrome
makepkg -sri

Upgrading chrome:
We have to manually upgrade the google-chrome when its new version is available on the AUR repo. So to upgrade the package using the following command in the chrome repo cloned directory.
git pull
makepkg -si
Similar Reads
Linux Commands Cheat Sheet
Linux, often associated with being a complex operating system primarily used by developers, may not necessarily fit that description entirely. While it can initially appear challenging for beginners, once you immerse yourself in the Linux world, you may find it difficult to return to your previous W
13 min read
grep command in Unix/Linux
The grep command in Unix/Linux is a powerful tool used for searching and manipulating text patterns within files. Its name is derived from the ed (editor) command g/re/p (globally search for a regular expression and print matching lines), which reflects its core functionality. grep is widely used by
7 min read
Sed Command in Linux/Unix With Examples
The SED command is one of the most powerful commands used during the process of text processing in Linux/Unix operating systems. The SED command is typically invoked for executing operations such as replace and search, text manipulation, and stream editing.With SED, you can manipulate text files wit
9 min read
25 Basic Linux Commands For Beginners [2025]
While performing a task, we all need shortcuts. Shortcuts help us to complete a task quickly. Linux comes with such commands which are one to two words, using that commands, you can perform several operations in no time. As a beginner, you must be aware of those basic Linux commands to complete an o
13 min read
How to Find the Wi-Fi Password Using CMD in Windows
Forgotten your Wi-Fi password? Need to connect a new device but canât recall the complex string of characters? You donât have to scramble for that sticky note or reset your router just yet! Hidden within Windows is a powerful, built-in tool that lets you retrieve your Wi-Fi password quickly and secu
8 min read
Linux/Unix Tutorial
Linux is one of the most widely used open-source operating systems. It's fast, secure, stable, and powers everything from smartphones and servers to cloud platforms and IoT devices. Linux is especially popular among developers, system administrators, and DevOps professionals.Linux is:A Unix-like OS
10 min read
AWK command in Unix/Linux with examples
Awk is a scripting language used for manipulating data and generating reports. The awk command programming language requires no compiling and allows the user to use variables, numeric functions, string functions, and logical operators. Awk is a utility that enables a programmer to write tiny but eff
8 min read
How to Install PIP on Windows
PIP stands for "Preferred Installer Program" or "Pip Installs Packages" and is a standard package manager for Python that enables users to install and manage additional libraries and dependencies not included in the standard Python library. To use PIP, you must install Python on your Windows machine
6 min read
How to Find a File in Linux | Find Command
Linux, renowned for its robust command-line interface, provides a suite of powerful tools for efficient file and directory management. Among these, the "find" command stands out as an indispensable asset, offering unparalleled versatility in searching for files based on diverse criteria. This articl
10 min read
ZIP command in Linux with examples
In Linux, the zip command compresses one or more files or directories into a single.zip archive file. This saves disk space, keeps data organized, and makes it simple to share or backup files. It's among the most used compression utilities, particularly when sharing large files via email or storing
6 min read