I want to install Skype, but I can't locate it in Software Center or by using Synaptic Package Manager. Can anyone help me?
8 Answers
All Ubuntu releases as of July 2017
To install the Skype for Linux application (version 8+):
Download the Deb package for Skype for Linux with your favourite web browser or HTTP client.
For a terminal-based solution use:
wget https://repo.skype.com/latest/skypeforlinux-64.debInstall the Deb package with your favourite package manager, e. g. Software Center or GDebi.
For a terminal-based solution or to debug the package installation use:
sudo apt install ./skypeforlinux-64.debYou’re done! When you installed the package it automatically added a repository […] to keep your installation of Skype up to date via Ubuntu's package update process.
(source)
The new Skype application works only on 64-bit (amd64) installations of Ubuntu.
- 36,890
- 56
- 97
- 151
Skype is now available in the snap store.
Skype snap package
Skype has been released as a snap package.
snap find skype
Name Version Developer Notes Summary
skype 8.14.0.10 skype classic One Skype for all your devices. New features. New look. All Skype.
To install Skype in all currently supported versions of Ubuntu open the terminal and type:
sudo snap install skype --classic
The skype snap package will be updated automatically when updates are available.
- 122,292
- 133
- 301
- 332
I went to the Skype web site.
Then I choose to "download Skype for Linux DEB".
After the download I just double-click on the file or right-click and open with Software Center and click on Install.
It will install the Deb package that you downloaded and after finishing you will find it by typing
Skypein the search box. You can pin it's icon if you like.
- 36,890
- 56
- 97
- 151
- 530
Installing packages manually is not recommended. But I have been installing Skype package manually for a quite some time through the Ubuntu Package manager without any problem. Just make sure you check any warning shown by during the installation.
Go to: http://www.skype.com/intl/en/get-skype/on-your-computer/linux/
Download the 64bit Ubuntu package. Once the download is finished, double click the package to start the installation through the Ubuntu Package manager. It will download any dependency and instal
- 1,639
Recently, Skype has become very easy to get for Linux users. In fact, the package from the website works but the one in the repositories didn't for me (on Ubuntu 16.04). Just go to skype.com and download the Debian .deb file, which you can open directly by double-clicking the downloaded file in the folder, and it will install through the software centre. As of now it's still in Beta version.
- 4,171
- 248
For the new (2017) client
Since 2017, Skype has stopped to support the old client and the new ones are not in Canonical’s partner repositories. In order to install the new client and have it automatically upgraded through apt upgrade, you can follow the recipe below, lifted from websiteforstudents.com and tested on Ubuntu 17.10.
1. Remove the old Skype client
# Either
sudo apt remove skype
# or
sudo apt remove skypeforlinux
2. Ensure your prerequisites
sudo apt install apt-transport-https curl
apt-transport-https allows you to apt update and apt upgrade from a .deb file on available on the web. curl will allow you to download Skype’s GPG key from the web.
3. Add skype.com’s deb to your apt source list
Firstly add Skype’s GPG key
curl https://repo.skype.com/data/SKYPE-GPG-KEY | sudo apt-key add -
Then create a file in apt source list containing package information, telling apt that it has to check skype.com for the repository.
echo "deb [arch=amd64] https://repo.skype.com/deb stable main" | sudo tee /etc/apt/sources.list.d/skype-stable.list`.
And update the repository
sudo apt update
4. Install Skype itself
sudo apt install skypeforlinux
skypeforlinux will be upgraded when needed, like the other Ubuntu softwares.
- 3
- 2
Skype and some other popular applications can be currently (August 2017) installed with Flatpack.
To use the latest version of Flatpack on Ubuntu, it is recommended to use a PPA:
sudo add-apt-repository ppa:alexlarsson/flatpak
sudo apt update
sudo apt install flatpak
To install Skype with flatpak for all users, execute:
flatpak install --from https://s3.amazonaws.com/alexlarsson/skype-repo/skype.flatpakref
After restarting the graphical shell or logging out and logging in, Skype should appear in application menus and in search results, and it then can be added to the favourites. It can also be started from the command line with
flatpak run com.skype.Client
- 793
First I was using snap to install skype, then apt-get install skypeforlinux, both installations when skype was running then, have shown irritating notification messages in the kind of "new update is available. Install latest version via your package manager, then restart skype". the apt update and upgrade did no help either.
So i removed it completely and installed skype via the browser: fetched the apt by browser and got it installed from https://www.skype.com/de/get-skype/
the "new update is available..." notification have gone! Installed version is 8.56.0.103
- 626


