How to Install AUR Packages on Manjaro
Manjaro, based on Arch Linux, supports the Arch User Repository (AUR). Below are the steps to install AUR packages on Manjaro.

1. Enable AUR in Manjaro
Manjaro has built-in support for AUR, but you need to enable it:
- Open the Add/Remove Software tool (Pamac).
- Go to Preferences > AUR.
- Enable the Enable AUR support option.
2. Install an AUR Helper (Optional but Recommended)
An AUR helper simplifies the process of installing and managing AUR packages. Some popular AUR helpers include:
yay(recommended)parupikaur
To install yay, run:
sudo pacman -S yay3. Install AUR Packages
Using an AUR Helper (e.g., yay)
yay -S <package-name>
Replace <package-name> with the name of the AUR package you want to install.
Manually (without an AUR helper)
- Clone the AUR package repository:
git clone https://aur.archlinux.org/<package-name>.git
- Navigate to the cloned directory:
cd <package-name>
- Build and install the package:
makepkg -si
4. Update AUR Packages
If you’re using an AUR helper like yay, you can update all installed AUR packages with:
yay -Syu
This will also update your regular Manjaro packages.
5. Troubleshooting
-
If you encounter dependency issues, ensure all required dependencies are installed.
-
Always review the PKGBUILD and .install files in the AUR package to ensure they are safe and trustworthy.
Comments