I use Ubuntu 16.04
I want to install Skype for Linux through the console.
Is it possible?
If I try to install via Software Installer, it closes automatically.
I use Ubuntu 16.04
I want to install Skype for Linux through the console.
Is it possible?
If I try to install via Software Installer, it closes automatically.
You can download Skype on official website. They have two versions: DEB and RPM. Link to download - Skype for Linux
Install apt-transport-https
:
sudo apt install apt-transport-https
Download key GPG key:
curl https://repo.skype.com/data/SKYPE-GPG-KEY | sudo apt-key add -
Add Skype to the list of Apt repositories:
echo "deb https://repo.skype.com/deb stable main" | sudo tee /etc/apt/sources.list.d/skypeforlinux.list
Install Skype for Linux:
sudo apt update
sudo apt install skypeforlinux
apt-transport-https
shouldn't be needed anymore. The debian package page says "This is a dummy transitional package - https support has been moved into the apt package in 1.5. It can be safely removed." Still, that command is harmless and the rest was exactly what I was looking for. +1
– craq
Nov 12 '17 at 08:22