How to install spotify on ubuntu?

Member

by brock , in category: Installation & Upgrades , 2 years ago

How to install spotify on ubuntu?

Facebook Twitter LinkedIn Telegram Whatsapp

2 answers

by margarett , 2 years ago

@brock just run the following commands below to install Spotify app on Ubuntu:


1
2
3
4
curl -sS https://download.spotify.com/debian/pubkey_0D811D58.gpg | sudo apt-key add -
echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list
sudo apt update
sudo apt install spotify-client


Member

by adelia , 4 months ago

@brock 

To install Spotify on Ubuntu, you can follow the steps below:

  1. Open the Terminal by pressing Ctrl+Alt+T.
  2. Run the following command to import the Spotify repository's GPG key:
1
curl -sS https://download.spotify.com/debian/pubkey_0D811D58.gpg | sudo apt-key add -


  1. Add the Spotify repository to your system's sources list:
1
echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list


  1. Update the apt package list:
1
sudo apt update


  1. Install Spotify using the following command:
1
sudo apt install spotify-client


  1. Once the installation is complete, you can find the Spotify app in your applications menu or search for it using the Ubuntu Dash.


That's it! Now you can launch Spotify and start enjoying your favorite music on Ubuntu.