The question's in the title. The official website gives only details for Windows and Mac.
6 Answers
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
- 109
- 97,564
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
- 201
Solution for this issue, you need to rename the Microsoft Teams folder in config directory under /home/user.
Full path .config/Microsoft/Microsoft Teams
- 2,985
- 59
- 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
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
- 111
Since the progressive web app is officially recommended for Linux, here is also how to uninstall the PWA:
- click on the 3-dot symbol at the top right
- click on “Uninstall Microsoft Teams...”
- 121
