How do I install Spotify application on Linux desktop to stream music?
Spotify is a digital music stream service that provides you access to tons of songs. You can stream for free or buy a subscription. Creating a playlist is possible. A subscriber can listen music ad-free. You get better sound quality. This page shows how to install Spotify on Linux using a snap package manager that works on Ubuntu, Mint, Debian, Fedora, Arch and many other distros.
Installing spotify application on Ubuntu Linux
The procedure to install spotify on Linux is as follows:
- Install snapd on Linux
- Turn on snapd service in Linux
- Find Spotify snap, run:
snap find spotify - Install spotify music app on Linux:
sudo snap install spotify - Run it:
spotify &
Let us see all steps and examples in details.
Step 1 – Install Snapd
You need to install snapd package in order to install spotify app. It is daemon (service) and tooling that enable snap packages on Linux operating system. Therefore, type commands as per your Linux distro.
Snapd on a Debian/Ubuntu/Mint Linux
Run the following apt command/apt-get command as follows:$ sudo apt install snapd
Install snapd on an Arch Linux
snapd is available in the Arch User Repository (AUR) only. Run yaourt command (see how to install yaourt on Archlinux):$ sudo yaourt -S snapd
$ sudo systemctl enable --now snapd.socket
Get snapd on a Fedora Linux
In this example, use the dnf command command as follows:sudo dnf install snapd
sudo ln -s /var/lib/snapd/snap /snap
OpenSUSE install snapd
Execute the zypper command as follows to install the same:### Tumbleweed verson ###
$ sudo zypper addrepo http://download.opensuse.org/repositories/system:/snappy/openSUSE_Tumbleweed/ snappy
### Leap version ##
$ sudo zypper addrepo http://download.opensuse.org/repositories/system:/snappy/openSUSE_Leap_42.3/ snappy
Install it. In other words type the following command:$ sudo zypper install snapd
$ sudo systemctl enable --now snapd.socket
Step 2 – Install Spofity app on Linux using snap
Run the snap command:$ snap find spotify
Install it:$ sudo snap install spotify
Step 3 – Run spotify and enjoy it
Run it from GUI or simply type:$ spotify
Automatically sign in to your account on startup:$ spotify --username vivek@nixcraft.com
$ spotify --username vivek@nixcraft.com --password 'myPasswordHere'
Start spotify client with given URI when initialized:$ spotify--uri=<uri>
Start with the specified URL:$ spotify--url=<url>
How to delete spotify app
If you do not like it the app, you can delete it by typing the following command:$ sudo snap remove spotify
By default, all the snap revisions are removed, including their data and the common data directory.
Forcefully update Spotify app
All snaps are automatically updates, However, one can always run the following command to upgrade it manually:sudo snap refresh spotify
Conclusion
You learned how to install Spotify app on Ubuntu, Debian, Arch, Suse, and other Linux distros. In addition, you also learned how to install snapd. For info see: