The question's in the title. The official website gives only details for Windows and Mac.
5 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

- 107

- 88,010
-
5
-
38In my case, the package was teams, therefore the solution was
sudo apt remove teams
. – Dan Roberts May 03 '20 at 14:52 -
3On Ubuntu 22.04, the command to remove the PPA doesn't work. You can open Software and Updates Application, go to Other Software tab and remove the repos/ms-teams entry manually. – x__x Jul 21 '22 at 09:57
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

- 181
-
1
-
-
$ snap remove --purge teams snap "teams" is not installed $ sudo apt purge teams The following packages will be REMOVED: teams* 0 upgraded, 0 newly installed, 1 to remove and 4 not upgraded. After this operation, 302 MB disk space will be freed. https://askubuntu.com/a/310/421929 – Alexander Glulkhovtsev Nov 01 '22 at 04:14
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,945
- 5
- 17
- 26
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
- 2
-
4
rm
will delete the files and directories of teams but would not "uninstall" that. It'll still appear as a "ghost" inapt list --installed
anddpkg -l
. – Kulfy Mar 23 '20 at 14:49 -
-
-
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
- 4
sudo dpkg -P teams
? – Kulfy Mar 23 '20 at 14:38