110

The question's in the title. The official website gives only details for Windows and Mac.

andrew.46
  • 39,359
Gytis
  • 1,227

6 Answers6

185

Because the Linux version of the Teams application is supplied as a .deb file, the installation is registered in your package manager. Note, however, that as part of the installation process, Microsoft also added a software source (PPA) for Teams. That ensures that you automatically receive updates.

The package is named teams. You can see this in the output of the command dpkg -l *team*. Remove it using

sudo apt remove teams

You can remove the added PPA using the "Software & Updates", "Other Software" tab, or using the terminal:

sudo add-apt-repository --remove ppa:repos/ms-teams
vanadium
  • 97,564
10

From the site https://doc.ubuntu-fr.org/teams => the snap solution worked for me, apt and dpkg didn't.

snap remove --purge teams or snap remove --purge teams-for-linux

julien
  • 201
5

Solution for this issue, you need to rename the Microsoft Teams folder in config directory under /home/user.

Full path .config/Microsoft/Microsoft Teams

Vineet Bakshi
  • 59
  • 1
  • 1
1

In an older version of Ubuntu Like mine, I use the following line.

sudo rm -r {the directory of where you installed the "team"}

It depends on How you install it. If you install from Microsoft Website, .deb then it is easily uninstalled with the above line. If you installed using Wine but using the .exe. file then you need to do something About the Wine

wine uninstall

** I used an old version, It might work for you and probably not. Hope this help

钟智强
  • 127
1

If none of the other answers work for you, then check if you've installed one of the later versions via flatpak.

$ flatpak list
Name                    Application ID
...
Microsoft Teams         com.microsoft.Teams
...

If this is the case, you can uninstall it with:

flatpak uninstall com.microsoft.Teams
vee
  • 111
0

Since the progressive web app is officially recommended for Linux, here is also how to uninstall the PWA:

  1. click on the 3-dot symbol at the top right
  2. click on “Uninstall Microsoft Teams...”

Screenshot of the Uninstall menu entry of the PWA

jo3rn
  • 121