How To Install Spotify On Linux - IbsterTech


Note: Make sure you watch the video below, to install spotify without any problems!

About Spotify

Spotify is a Swedish Audio streaming and media services provider founded on 23 April 2006 by Daniel Ek and Martin Lorentzon.
It is the world's largest music streaming service provider, with over 381 million monthly active users, including 172 million paying subscribers, as of September 2021. Wikipedia

Method 1

Make Sure Your System Is UpTo Date:

sudo apt update -y && sudo apt upgrade -y

Installation of essential dependencies:

sudo apt install snapd && sudo snap install core

Refreshing Snapd Installation:

sudo systemctl restart snapd

Snapd Installation Documentaion: https://snapcraft.io/docs/installing-snapd

Installing spotify:

sudo snap install spotify

Method 2

Installation of essential dependency (curl):

sudo apt install curl

Retreiving gpg key:

curl -sS https://download.spotify.com/debian/pubkey_5E3C45D7B312C643.gpg | sudo apt-key add -

Retreiving deb file:

echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list

Installing spotify:

sudo apt-get update && sudo apt-get install spotify-client