Skype is a popular proprietary communication application well known for its voice calls, chats, VoIP-based video telephony, and video conferencing functionalities. It helps people stay connected regardless of their geographical location; from colleagues within an organization to family and friends.
Skype works across a wide range of devices including smartphones (iOS and Android) PCs, and tablets. You can also log in to Skype on the browser to stay in touch with all your contacts.
[ You might also like: Best Skype Alternatives for Linux Desktop ]
In this guide, we will demonstrate how to install Skype on Fedora Linux 35/36. There are three simple ways that you can do this, and we will go over each of them.
Method 1: Install Skype in Fedora Using RPM Package
This is the most straightforward way of installing Skype on Fedora and Linux in general. To accomplish this, visit the Official Skype download page and download the RPM package or download directly on the terminal using the wget command as shown.
$ wget https://go.skype.com/skypeforlinux-64.rpm
The RPM package will be downloaded to your current directory. Therefore, to run the RPM package, just execute the following command.
$ sudo rpm -ivh skypeforlinux-64.rpm

Method 2: Install Skype in Fedora Using Repository
Another approach is to install Skype from the Skype repository. To do this, first, upgrade all the packages to their latest versions.
$ sudo dnf update -y
Once all the packages have been upgraded, add the Skype repository to your system as follows.
$ sudo dnf config-manager --add-repo https://repo.skype.com/rpm/stable/skype-stable.repo
Just to be sure that the Skype repository has been added and is available, run the following command:
$ dnf repolist | grep skype

Then install Skype using the DNF package manager as shown.
$ sudo dnf install skypeforlinux -y

To confirm that Skype has been installed, run the following rpm command:
$ rpm -qi | grep skypeforlinux
The command prints out detailed information about Skype including the name, version, release, architecture, and installation date to mention just a few attributes.

Method 3: Install Skype in Fedora Using Snap
Another approach is to install Skype from a snap. This is quite a straightforward way of installing Skype and it involves just a couple of commands.
First, ensure Snapd daemon is installed. This is a daemon that manages and maintains snaps. Snaps are containerized cross-distribution and dependency-free software packages that are easy to install.
To install snapd, run the command:
$ sudo dnf install snapd
Next, enable classic support for snap by creating a symbolic link between /var/lib/snapd/snap and /snap.
$ sudo ln -s /var/lib/snapd/snap /snap
Then finally, install the Skype snap package as follows
$ sudo snap install skype
Once the installation is complete, you will get the following output indicating that Skype has successfully been installed.

Starting Skype in Fedora Linux
To launch Skype, click on ‘Activities’ at the top left corner or press the Windows Key and search for Skype as shown. Click on the Skype logo to launch it.
Once launched, the Skype graphical interface will appear. To continue, click on ‘Let’s go’.

In the next step, click on the ‘Sign in or Create’ button to sign in to your Microsoft account which will, in effect, sign you to your Skype account. If you don’t have an account yet, you will be required to create an account first.

And that’s it. We have successfully installed Skype on Fedora 35/36 using three methods; installing from the rpm, snap package, and installing from the Skype repository. You can now use Skype to chat and stay in touch with your friends, colleagues, and family.
I am using Linux Mint 17 how should I download skype for that.
$ sudo wget http://download.skype.com/linux/skype-ubuntu-precise_4.2.0.11-1_i386.deb this works for ubuntu .
Please help me to solve this issue.
@Pankaj,
Same will work for Linux Mint too, as Mint based on Ubuntu
Why mention snaps and not flatpak, which on Fedora is a more logic way to install third party apps, instead of setting up snapd?