This question already has answers here:
Install spotify-client on Ubuntu using puppet via Apt module
(2个答案)
两年前关闭。
在Ubuntu 16.04上,我已经按照安装说明安装了spotify存储库:
spotify installation instructions是:
添加Spotify存储库签名密钥以验证下载的包
添加Spotify存储库
更新可用包列表
安装Spotify
但是当我运行第3步时,我会得到这个错误:
这是存储库:
我该怎么解决?谢谢!
(2个答案)
两年前关闭。
在Ubuntu 16.04上,我已经按照安装说明安装了spotify存储库:
spotify installation instructions是:
添加Spotify存储库签名密钥以验证下载的包
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys BBEBDCB318AD50EC6865090613B00F1FD2C19886
添加Spotify存储库
echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list
更新可用包列表
sudo apt-get update
安装Spotify
sudo apt-get install spotify-client
但是当我运行第3步时,我会得到这个错误:
$ sudo apt-get update
...
Reading package lists... Done
E: The repository 'http://repository.spotify.com xenial Release' does not have a Release file.
这是存储库:
$ cat /etc/apt/sources.list.d/spotify.list
deb http://repository.spotify.com xenial stable non-free
我该怎么解决?谢谢!
最佳答案
这篇文章真的应该在https://askubuntu.com/或https://community.spotify.com上,而不是http://stackoverflow.com
无论如何都要回答你的问题。您没有正确执行步骤2。去除http://repository.spotify.com和稳定之间的xenial。
关于linux - 存储库“http://repository.spotify.com xenial版本”没有发布文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42515240/
10-15 01:55