E:列表文件 /etc/apt/sources.list.d/atom.list 中的条目 1 格式错误

E:列表文件 /etc/apt/sources.list.d/atom.list 中的条目 1 格式错误

当我尝试安装任何东西时,出现错误 E:列表文件 /etc/apt/sources.list.d/atom.list 中的条目 1 格式错误

/etc/apt/sources.list.d/atom.list:

deb https://packagecloud.io/AtomEditor
/atom/any/ any main

答案1

格式错误的条目 1 表示文件的第 1 行有错误。

第 1 行格式不正确,因为该行被拆分为两行。文件内容应如下所示:

deb https://packagecloud.io/AtomEditor/atom/any/ any main

运行以下命令自动编辑并修复文件:

sudo sed -i 'N;s/\n//g' /etc/apt/sources.list.d/atom.list

相关内容