我在 Ubuntu 14.04 上安装 spotify 客户端时遇到问题。我安装了最新更新,但没有任何变化。
首先我跑了:
deb http://repository.spotify.com stable non-free
然后我做了:
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 94558F59
之后我做了:
sudo apt-get update
然后我做了:
sudo apt-get install spotify-client
但它说
cannot find package spotify-client...
答案1
我找到了 32 位版本的 Spotify,这里是链接: http://spotify.en.uptodown.com/ubuntu/download/78109
然后打开终端并转到文件已下载的目录并运行:
dpkg -i spotify-0-9-4-183-en-ubu.deb
Spotify 现在可以在我的系统上运行,运行在 Ubuntu 14.04 32 位上
答案2
您需要将服务器地址添加到您的服务器列表中。
如下所示:
sudo apt-add-repository -y "deb http://repository.spotify.com stable non-free"
简单地运行deb "source"
不会将其添加到您的列表中,而所有 apt 命令都在其中查找。所以当然它找不到任何东西。:)
答案3
您输入的deb http://repository.spotify.com stable non-free
是命令,而不是将其添加到 /etc/sources。请按顺序输入以下命令。
sudo apt-add-repository "deb http://repository.spotify.com stable non-free"
sudo apt-get update
sudo apt-get install spotify-client
答案4
从现在起(2015 年 5 月),Spotify 不再支持 32 位 CPU,因此,如果要在 32 位 CPU 上安装它,您应该按照他们的说法,使用 dpkg 手动进行安装。