错误 sudo:add-apt-repository:未找到命令

错误 sudo:add-apt-repository:未找到命令

我正在运行 Ubuntu 14.04。当我运行:

sudo add-apt-repository ppa:ubuntu-wine/ppa

我收到以下错误:

sudo: add-apt-repository: command not found

我试着跑

sudo apt-get install software-properties-common

但它显示:

software-properties-common is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.

答案1

对于 Ubuntu 14.04 或更高版本,您需要安装该software-properties-common包:

sudo apt install software-properties-common

我在此博客中找到了解决方案: Ubuntu Server 14.4 (Trusty Tahr) – add-apt-repository:未找到命令

答案2

如果您使用的是旧版本的 Ubuntu,即 12.10 之前的版本,则需要安装该软件包python-software-properties

sudo apt install python-software-properties

答案3

跑步 sudo apt-get update

然后 sudo apt install software-properties-common -y

现在, 您可以使用sudo add-apt-repository

相关内容