我按照说明在 Ubuntu 13.04 上安装 Spotify,但什么也没发生

我按照说明在 Ubuntu 13.04 上安装 Spotify,但什么也没发生

我运行了以下命令

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

没有任何反馈。只是光标返回了。当我去寻找应用程序时,它不在那里。由于其他用户报告成功,我希望我错过了一些基本的东西。

答案1

尝试官方软件包,自从他们发布 Linux 预览客户端以来已经有一段时间了。

基本说明:

  • 添加 repo

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

  • 接受 Spotify 服务器密钥

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 94558F59

  • 更新 repos 并安装 spotify

sudo apt-get update && sudo apt-get install spotify-client

更多详细信息请参见以下链接:

http://www.omgubuntu.co.uk/2013/01/how-to-install-spotify-in-ubuntu-12-04-12-10

答案2

嗨,这对我很有用。!

添加并更新存储库

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

安装应用程序

sudo apt-get install spotify-client-qt

相关内容