In this guide, we are going to learn how to install Microsoft Teams client on Ubuntu 20.04/18.04. Microsoft Teams is chat-centered workspace in Office 365. It instantly enables you to access all your team’s content from a single place where messages, files, people and tools live together.
Some of the features provided by the Microsoft Teams app include;
- Work with your team’s documents on the go
- Move seamlessly across different team projects and topics
- Mention individual team members or your entire team to get attention.
- Chat privately one-on-one or have instant group conversations
- See real-time chat history on your favorite device and continue conversations started elsewhere
- Chat with your entire team in dedicated channels
- Quickly search through your chats and team conversations
- Find a contact through name or email address search
- Include content and capabilities you need every day
- Customize alerts to get notified when you get mentioned or get a message
- Save important conversations to quickly access them later
- Get the enterprise-level security and compliance you expect from Office 365
- Enhanced security with multi-factor authentication
As of this writing, Microsoft Teams App for Linux is available as a preview version.
Install MS Teams App on Ubuntu 20.04/18.04
The use of Microsoft Teams App requires appropriate commercial Office 365 subscription. Ensure that you have the necessary license to use Teams app seamlessly.
There are two ways in which you can install Microsoft Teams on Ubuntu 20.04 or Ubuntu 18.04;
Install Teams via DEB Linux Binary Installer
Navigate to teams app downloads page and grab the current Debian binary installer.
You can simply obtain the URL and pull the binary using wget;
wget https://packages.microsoft.com/repos/ms-teams/pool/main/t/teams/teams_1.5.00.10453_amd64.deb
Once the download is complete, install Teams using APT package manager. This ensures that any would dependencies are sorted automatically;
sudo apt install ./teams_1.5.00.10453_amd64.deb
Install Microsoft Teams from Microsoft Repository
It is also possible to install Microsoft Teams App from Microsoft repos. Thus create the repository as follows and install Teams App.
Install repository signing Key;
curl -s https://packages.microsoft.com/keys/microsoft.asc | \
sudo gpg --dearmor > /etc/apt/trusted.gpg.d/teams.gpg
Create the Teams App repository;
echo "deb [arch=amd64] https://packages.microsoft.com/repos/ms-teams stable main" > /etc/apt/sources.list.d/teams.list
Similarly, this command can work as well;
echo "deb [arch=amd64] https://packages.microsoft.com/repos/ms-teams stable main" | sudo tee /etc/apt/sources.list.d/teams.list
Apt your system package cache;
sudo apt update
Install Microsoft Teams App from repository;
apt install teams
Using Microsoft Teams App on Ubuntu 20.04/18.04
Once the App is installed, you can either launch Teams App from activities or from terminal by simply typing teams
.
Launch teams and sign in with your cooperate mail account to be able to create teams, schedule meetings, chat make team calls etc.
Want to remove Teams App? Run the command below;
apt remove --purge --auto-remove teams -y
Related Tutorials
How to Install Zoom Video Communications Client on Ubuntu 18.04 LTS
Install and Setup Chrome Remote Desktop on Ubuntu 20.04
Teams on my ubuntu 20.04 do not work microphone.
Mmh! Somebody tried to daemonize pulseaudio with,
sudo pulseaudio -D
and then running teams again;Try if works for you. Otherwise we cant reproduce this.
Anyone running Teams on ubuntu with the latest features eg being able to see more than 4 people on the screen (i think now up to 9) and changing your backgrounds?
The command to create the Teams App repository should use `sudo tee`:
echo “deb [arch=amd64] https://packages.microsoft.com/repos/ms-teams stable main” |sudo tee /etc/apt/sources.list.d/teams.list
Thanks for the feedback! We have updated the guide to include this as well.
This recipe does not function on Ubuntu 22.04 (see below). An update for the newest LTS would be welcome. Thank you.
W: GPG error: https://packages.microsoft.com/repos/ms-teams stable InRelease: The following signatures couldn’t be verified because the public key is not available: NO_PUBKEY EB3E94ADBE1229CF
E: The repository ‘https://packages.microsoft.com/repos/ms-teams stable InRelease’ is not signed.
N: Updating from such a repository can’t be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
You must have missed the step of adding the repo GPG signing key.
Thank you for the detailed guide! I followed your steps, and the installation went smoothly on my Ubuntu 20.04 system. It’s great to have Teams running seamlessly. Appreciate the effort you put into making this process clear!