I read this article and want to avoid the complicated procedure to get Microsoft Teams running on Ubuntu 18.04.
Is there a simpler way?
Update 2021:
Follow the official docs: https://docs.microsoft.com/en-us/microsoftteams/get-clients#linux
I read this article and want to avoid the complicated procedure to get Microsoft Teams running on Ubuntu 18.04.
Is there a simpler way?
Follow the official docs: https://docs.microsoft.com/en-us/microsoftteams/get-clients#linux
On my Ubuntu 18.04.2 I installed it via the command :
sudo snap install teams-for-linux
( I did not understand the other answers completely
and the linked versions are older 0.2.1.
my install is 0.3 )
You can use the following electron client:
https://github.com/IsmaelMartinez/teams-for-linux
You can do desktop and screen sharing and all the other basics (mentions, video and audio call, integrations, opening meeting links, etc)
This is a continuation from the ivelkov project.
The Linux version of Microsoft Teams is no longer supported. It is recommnded to switch to PWA version, using Chrome, Chromium or Edge. See https://techcommunity.microsoft.com/t5/microsoft-teams-blog/microsoft-teams-progressive-web-app-now-available-on-linux/ba-p/3669846 for details.
Installing from the official Microsoft Teams DEB repository has the advantage that Microsoft Teams will get automatically updated together with your other packages, as soon as Microsoft publishes a new release.
Here are four easy cut & paste installation steps to get about this:
1.Install the repository signing key:
$ curl https://packages.microsoft.com/keys/microsoft.asc |sudo apt-key add -
2.Add the ms-teams
repository as a file to the apt
sources.list.d
:
$ echo "deb [arch=amd64] https://packages.microsoft.com/repos/ms-teams stable main" |sudo tee /etc/apt/sources.list.d/teams.list
3.Update the apt
packages cache:
$ sudo apt update
4.Install teams
from the newly added repository:
$ sudo apt install teams
apt-key
is deprecated. You add the key to keyrings and configure apt sources to use the key. curl -s https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmour -o /usr/share/keyrings/packages-microsoft.gpg ; echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/packages-microsoft.gpg] https://packages.microsoft.com/repos/ms-teams stable main' > /etc/apt/sources.list.d/teams.list
– sastorsl
May 09 '22 at 11:41
E: Unable to locate package teams
Any clue ?
– Achal
Apr 08 '23 at 17:19
Install the debian package from the following repository!
https://github.com/sudhirnakka/teams-ubuntu-enhanced/releases
Discontinued
You can install the official version as:
As deb package from the official MS Teams download page. If you need more details how to install the deb package, you find it on the Website for Students. Delete configuration folders to reset Teams:
rm -rf ~/.config/teams
rm -rf ~/.config/Microsoft/Microsoft\ Teams
As Snap package from the Software App or snapcraft.io-Page or in a terminal (sudo snap install teams
).
Kindly follow below steps.
curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/ms-teams stable main" > /etc/apt/sources.list.d/teams.list'
sudo apt update
sudo apt install teams
E: Unable to locate package teams
Any clue ?
– Achal
Apr 08 '23 at 17:19
you can install by the following command
cd /tmp
wget https://packages.microsoft.com/repos/ms-teams/pool/main/t/teams/teams_1.2.00.32451_amd64.deb
dpkg -i teams_1.2.00.32451_amd64.deb
https://packages.microsoft.com/repos/ms-teams/
– Mr. Linux Apr 08 '23 at 21:33