未找到软件中心

未找到软件中心

每当尝试通过命令安装软件中心时

sudo apt-get install software-center

意思是

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package software-center is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'software-center' has no installation candidate

请帮忙

答案1

很明显,意思是找不到“software-center”这个包。这可能有很多原因。

  1. 检查文件/etc/apt/sources.list以查看是否包含如下行:

    deb http://*.archive.ubuntu.com/.... 其中 * 可能已被子域名(如 de.、fr. 等)替换,或者也可以省略。如果行以井号 (#) 开头,请删除该井号。请勿删除文本注释前的井号。

  2. 首先使用更新您的存储库索引sudo apt-get update,然后重试。
  3. 如果失败,请发布您的文件 /etc/apt/sources.list

相关内容