Yaourt (Yet Another User Repository Tool) is a popular command-line utility for installing packages from the Arch User Repository (AUR) on Arch Linux. It is not officially supported by the Arch Linux developers, but is widely used by many users.
To install yaourt on Arch Linux, follow these steps:
wget https://aur.archlinux.org/cgit/aur.git/snapshot/package-query.tar.gz
tar xvf package-query.tar.gz
cd package-query
makepkg -si
This will build and install the package-query package, which is a dependency for yaourt.
wget https://aur.archlinux.org/cgit/aur.git/snapshot/yaourt.tar.gz
tar xvf yaourt.tar.gz
cd yaourt
makepkg -si
This will build and install the yaourt package.
To use yaourt, you can use the yaourt
command followed by the package name you want to install. For example, to install the htop
package, you can use the following command:
yaourt htop
That's it! Yaourt is now installed on your Arch Linux system and ready to use. You can use it to install packages from the AUR using the command line. Note that yaourt is not officially supported by the Arch Linux developers, so use it at your own risk.