Install Chromium on Arch Linux/Manjaro in One Line of Command

mail
Cyrus Kao
Last modified

Chromium is an open-source web browser, also the core of many popular browsers like Google Chrome, Brave, Vivaldi and even Microsoft Edge. There are people actually using Chromium in their day to day works, since it's the only way to experience the bleeding edge features of the core.

Chromium
Chromium web browser

Installation

Install the preferred version of Chromium from AUR.

Chromium

  • Using pacman

    sudo pacman -S chromium
    Bash
  • Using yay

    yay -S chromium
    Bash

Chromium Dev

  • Using pacman

    sudo pacman -S --needed git && git clone https://aur.archlinux.org/chromium-dev.git && cd chromium-dev && makepkg -si
    Bash
  • Using yay

    yay -S chromium-dev
    Bash

Chromium Nightly

  • Using pacman

    sudo pacman -S --needed git && git clone https://aur.archlinux.org/chromium-snapshot-bin.git && cd chromium-snapshot-bin && makepkg -si
    Bash
  • Using yay

    yay -S chromium-snapshot-bin
    Bash

See Also

Comments

0500