我目前正在尝试在 Ubuntu 19.10 上安装 Docker。我一直在遵循 Docker 的安装指南网站。当我运行实际安装步骤时,我得到以下结果:
$ sudo apt-get install docker-ce docker-ce-cli containerd.io
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package containerd.io 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
我尝试多次查看安装指南,以确保没有搞错任何步骤。我不知道还能尝试什么。提前感谢任何帮助!
答案1
我遇到了类似的问题。问题似乎出在我们使用文档构建的存储库上。我用 bionic 替换了添加存储库命令中的“$(lsb_release -cs)”。成功了。
Docker文档中的说明:
$ sudo add-apt-repository "deb [arch=amd64]https://download.docker.com/linux/ubuntu$(lsb_release -cs) 稳定”
修改命令:
$ sudo add-apt-repository "deb [arch=amd64]https://download.docker.com/linux/ubuntu “仿生稳定”
然后尝试使用以下命令安装 docker
$ sudo apt-get 安装 docker-ce docker-ce-cli containerd.io