Docker 安装

Docker 安装

我尝试使用以下命令安装 docker:

$ sudo apt-get install docker* -y

但我收到了这个错误:

The following packages have unmet dependencies:
docker-ce : Conflicts: docker.io but 19.03.8-0ubuntu1.20.04.2 is to be installed
 docker-ce-cli : Conflicts: docker.io but 19.03.8-0ubuntu1.20.04.2 is to be installed
 docker.io : Depends: containerd (>= 1.2.6-0ubuntu1~)
E: Unable to correct problems, you have held broken packages

这意味着什么?我该如何解决?我看到了类似的回复,但我仍然遇到同样的问题。

谢谢你,托尼

答案1

这意味着您的 sources.list 不正确,或者您在运行命令之前没有更新,如果我从命令末尾删除 -s,它将在这里完美安装。 paste.bin 显示其结果。现在我再次阅读我的输出,没有尝试安装 docker.ce。您需要确定它来自哪里,最好通过删除 * 并将其替换为 .io 来实际安装您想要的包及其依赖项。apt-get install docker docker.io -y对于该包,因为它似乎就是它为我安装的。

https://pastebin.com/WrhbCQgL

相关内容