Created
April 30, 2022 01:17
-
-
Save TylerDurham/2927cef678e65842c99c8f6c7b1f6920 to your computer and use it in GitHub Desktop.
Install Spotify on Ubuntu.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -sS https://download.spotify.com/debian/pubkey_5E3C45D7B312C643.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-get update && sudo apt-get install spotify-client |
If you are running Ubuntu 22.04, Spotify is still using libssl1.1 (Ubuntu 22.04 ships with libssl3). You can perform the following workaround (at your own risk!):
echo "deb http://security.ubuntu.com/ubuntu impish-security main" | sudo tee /etc/apt/sources.list.d/impish-security.list
sudo apt-get update
sudo apt-get install libssl1.1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Install it on Ubuntu: