Arch Linux – How to Install Microsoft Teams via Pacman

arch linuxpacman

How to install Microsoft Teams via pacman for arch linux?

Microsoft Teams is also available for linux. I have problems to get an easy installation for arch. Teams is not listed in official package manager for pacman?

I found only DEB and RPM for official download packages from Microsoft:
https://products.office.com/en-us/microsoft-teams/download-app

enter image description here

Best Answer

a) using makepg and install package

  1. Clone teams arch git repository (PKGBUILD)

    git clone https://aur.archlinux.org/teams.git .
    
  2. Build package using makepkg and install using -si option

    makepkg -si
    

See also: https://aur.archlinux.org/packages/teams/

b) alternatively use yay as package manager to easy install aur packages

  1. if yay not installed

    git clone https://aur.archlinux.org/yay.git
    cd yay
    makepkg -si
    
  2. Use yay to install aur package

    yay -S teams

Related Question