Here is the simplest way to install any program on EndeavourOS, no need for any graphical installers and other nonsense like that.
If you know what program you want to install, look it up on these two websites, in this order:
- Official repositories: https://archlinux.org/packages/
- AUR: https://aur.archlinux.org/packages/
If you are just looking for a program to do some task, consult this Arch wiki page:
Next, install it using pacman
if it is in the repos:
sudo pacman -S <package_name>
Here is a short list of some of the most useful pacman
options:
If it is something from the AUR, you should look into how the AUR works and how to check the PKGBUILD files, just in case. It is really easy to install software from the AUR using a helper program like yay
, but I would recommend that only after learning how the AUR works.
And I would recommend avoiding graphical package managers like Pamac, Octopi, or Bauh. They abstract away the package management from the user, often with detrimental results.