Installation of Spotify in the Debian and Ubuntu Systems
The following guide describes how to install Spotify on Debian and Ubuntu systems.
We will do the whole thing in a few seconds using the console and we can do it on 2 ways.
We launch the terminal and use the snap to execute one command:
1 | snap install spotify |
We can also install from a repository:
we add key and repo:
1 | curl -sS https://download.spotify.com/debian/pubkey_5E3C45D7B312C643.gpg | sudo apt-key add - |
1 | echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list |
we make install:
1 | sudo apt-get update && sudo apt-get install spotify-client |