安装 ubuntu-restricted-extras 时出错

安装 ubuntu-restricted-extras 时出错

Ubuntu 说我需要在终端中使用以下命令安装插件:

sudo apt-get install ubuntu-restricted-extras

但后来我收到了这个错误:

Reading package lists....Done
Building dependency tree
reading state information...Done
E:Unable to locate package Ubuntu-restricted
E:Unable to locate package extras

那么,现在该怎么办?

答案1

从您的错误信息来看:

Reading package lists....Done
Building dependency tree reading state information...Done
E:Unable to locate package Ubuntu-restricted
E:Unable to locate package extras

您忽略了-ubuntu-resticted 和 extras 之间的区别,因此 ubuntu 将它们视为不同的软件包,而不是一个软件包。这就是您收到该错误的原因。

尝试使用此命令:

sudo apt-get install ubuntu-restricted-extras

答案2

Ubuntu 区分大小写(和空格),而你输入的Ubuntu-restricted extrasubuntu-restricted-extras。你应该将命令复制并粘贴到终端,或者从软件中心

答案3

在本页面:https://help.ubuntu.com/community/RestrictedFormats,如果您使用的是常规的 Ubuntu,则有一个链接:单击此处安装 ubuntu-restricted-extras 包。您是否尝试过单击该链接以查看是否有效?

答案4

事情很简单..全新安装后,通过

sudo apt-get update

然后尝试通过以下方式安装 -

sudo apt-get install ubuntu-restricted-extras

也许你需要在软件和更新中启用多元宇宙,单击此处了解流程。进行更改,然后尝试更新。

相关内容