0

No matter what I try to install or uninstall, I get blocked. When I try to do it via Terminal, I always get the exact same message referencing ms-teams:

$ sudo apt remove zoom
E: Conflicting values set for option Signed-By regarding source https://packages.microsoft.com/repos/ms-teams/ stable: /usr/share/keyrings/ms-teams.gpg != 
E: The list of sources could not be read.

this is the content of the ms-teams.list file

deb [signed-by=/usr/share/keyrings/ms-teams.gpg] https://packages.microsoft.com/repos/ms-teams stable main

Any ideas on how I can overcome this? I need to update a bunch of apps after upgrading to Jellyfish.

ElefantPhace
  • 3,281

2 Answers2

0

try just removing the signed-by option in brackets, and see if that solves – ElefantPhace

0

Check you apt sources, you may have a duplicate entry for teams, and/or you may just need to remove the signed-by portion such as if your ms-teams.list looks like:

deb [signed-by=/usr/share/keyrings/ms-teams.gpg] https://packages.microsoft.com/repos/ms-teams stable main

remove the signed-by option

deb https://packages.microsoft.com/repos/ms-teams stable main
ElefantPhace
  • 3,281