0

I have installed skype with the following command: sudo snap install skype --classic the problem is when I want to open it, it doesn't work and automatically sign off. Even this happen writting skype on the terminal.

1 Answers1

1

Try to remove your snap installation using this command

sudo snap remove skype

then download the .deb file from Official Skype website.

Then install it using dpkg for ex:

dpkg -i /path-to-/deb-file.deb

Note: check this answer for more information about snap.

AboElnouR
  • 871