源列表 /etc/apt/sources.list.d/spotify.list 的第 1 行中类型 '¨deb' 未知

源列表 /etc/apt/sources.list.d/spotify.list 的第 1 行中类型 '¨deb' 未知

我正在尝试安装 spotify,但每次都失败了,我尝试安装sudo apt update,但我收到了这样的消息

Type '¨deb' is not known on line 1 in source list /etc/apt/sources.list.d/spotify.list
The list of sources could not be read.

有人知道如何修复/解决这个问题吗?

这是该文件的内容:

$ cat /etc/apt/sources.list.d/spotify.list
¨deb http://repository.spotify.com stable non-free¨

答案1

要修复此问题,请¨从文件中删除:

运行这个,

sudo sed -i 's/¨//g' /etc/apt/sources.list.d/spotify.list

然后您可以apt再次使用:

sudo apt update

为什么会出现这个问题?

你可能从使用错误引号的教程中复制粘贴了内容,例如

echo ¨deb http://repository.spotify.com stable non-free¨ | tee /etc/apt/sources.list.d/spotify.list

你需要始终使用正确的引号

  • 正确答案:"'。(勾选这里以区别于其他两种情况。
  • 错误:¨或者

相关内容