执行以下命令时
sudo apt-add-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
我在命令行编辑器中收到以下错误
add-apt-repository: command not found
答案1
您需要software-properties-common
先安装该软件包:
sudo apt-get install software-properties-common
sudo apt-get update
然后用于add-apt-repository
添加您的 PPA。