0

I'm having problems installing the spotify client on Ubuntu 14.04. I've installed the latest updates, but it didn't change anything.

First I ran:

deb http://repository.spotify.com stable non-free

Then I did:

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 94558F59

After that I did:

sudo apt-get update

And then I did:

sudo apt-get install spotify-client

But it says

cannot find package spotify-client...
Zanna
  • 72,312

4 Answers4

2

I found the 32bit version of Spotify, here's the link: http://spotify.en.uptodown.com/ubuntu/download/78109

Then open terminal and go to the directory the file has been downloaded to and run:

dpkg -i spotify-0-9-4-183-en-ubu.deb

Spotify now works on my system, running on Ubuntu 14.04 32bit

1

you need to add the server address to your server list.
Like this:

sudo apt-add-repository -y "deb http://repository.spotify.com stable non-free" 

Simply running deb "source" wont add it to you list which is where all apt commands are looking. So of course it won't find anything. :)

Alvar
  • 17,038
0

You typed deb http://repository.spotify.com stable non-free as a command, instead of adding it to your /etc/sources. Instead, type the following commands in order.

sudo apt-add-repository "deb http://repository.spotify.com stable non-free"
sudo apt-get update
sudo apt-get install spotify-client
0

Spotify doesn't have support to 32bit CPUs from now (may-2015) for install it in a 32bit CPU u should do it manually with dpkg as they have said.

WyRe
  • 1