Skip to content

Instantly share code, notes, and snippets.

@lewisgoddard
Last active May 18, 2016 11:12
Show Gist options
  • Save lewisgoddard/6778426 to your computer and use it in GitHub Desktop.
Save lewisgoddard/6778426 to your computer and use it in GitHub Desktop.
Install Spotify Preview in Linux
# Commands from https://www.spotify.com/uk/download/linux/
# 1. Add the Spotify repository signing key to be able to verify downloaded packages
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys BBEBDCB318AD50EC6865090613B00F1FD2C19886 &&
# 2. Add the Spotify repository
sudo apt-add-repository "deb http://repository.spotify.com stable non-free" &&
# 3. Update list of available packages
sudo apt-get update &&
# 4. Install Spotify
sudo apt-get install -y spotify-client
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment