Guides 11792 Published by

The guide walks Manjaro users through installing Google Chrome from the official repository, explaining why using the AUR package can cause dependency problems. It begins by enabling the extra repo, then shows a straightforward pacman command to fetch the signed binary, and verifies installation with a version check. The author also offers an optional pinning method to prevent unintended upgrades and warns about Snap conflicts that lead to library errors. Finally, it reminds readers that system updates automatically keep Chrome current, making the process easy and integrated into their Linux environment.



Install Google Chrome on Manjaro Linux

If you’re a Manjaro user who wants the same Chrome experience as on Windows or macOS, this quick guide shows you how to get it up and running without breaking your system. We’ll cover the official install method, what to watch out for, and why each step matters.

Why not use the AUR package?

I’ve seen people try yay -S google-chrome only to hit dependency hell because the AUR copy pulls in a huge set of libraries that clash with Manjaro’s base packages. Stick with the official repo; it keeps your system lean and well‑maintained.

Step 1: Enable the “extra” repository
sudo pacman -Syyu

The google-chrome package lives in the extra repo, not the main one. Updating first ensures you have the latest mirror list and avoids a half‑installed package.

Step 2: Install the official Google Chrome package
sudo pacman -S google-chrome

This pulls the signed binary from Google’s servers, so you get the same version as on other platforms. No build scripts, no manual compilation—just a straight install.

Step 3: Verify that everything is in order
google-chrome --version

You should see something like Google Chrome 128.0.6613.73. If the command isn’t found, double‑check the installation path or try logging out and back in.

Step 4 (optional): Pin Chrome to avoid accidental upgrades

If you’re worried about a future update breaking your workflow, add a line to /etc/pacman.conf:

[google-chrome]
SigLevel = Never
Include = /etc/pacman.d/mirrorlist

This tells pacman not to automatically upgrade Chrome. You can still run sudo pacman -Syu --ignore google-chrome if you want a selective update.

Troubleshooting: The “Couldn’t load library” error

I’ve seen this after users installed Chrome via Snap, which bundles its own libraries and then conflicts with Manjaro’s dynamic linker. If you hit that message, uninstall the Snap version:

sudo snap remove chrome

…and stick to the pacman package.

Keep Chrome Updated

Just run your normal system update command; pacman will pick up new Chrome releases automatically:

sudo pacman -Syu

No separate “Chrome Update” tool needed—Linux handles it for you.

That’s all there is to it. Google Chrome is now part of your Manjaro ecosystem, and you can use it just like any other application.