我试图在vmware的Ubuntu上安装对接器,但没有成功。这些是我所经历的命令和错误。
sudo apt-get update
sudo apt-get install docker-engine
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package docker-engine发布于 2016-05-03 06:22:55
尝试'uname -a‘并确保您运行的是64位架构:
Docker需要64位安装,而不管您的Ubuntu版本如何。
https://docs.docker.com/engine/installation/linux/ubuntulinux/
发布于 2016-02-10 17:06:37
正如评论中提到的,你必须
lsb_release -c查找您的发行名称/etc/apt/sources.list.d/docker.list应该有以下内容(没有其他内容):deb https://apt.dockerproject.org/repo ubuntu-VERSION-NAME main在我的例子中(Ubuntu14.04,又名“信任”),我添加了deb https://apt.dockerproject.org/repo ubuntu-trusty main
发布于 2019-02-07 06:47:18
我通过运行apt-get更新和apt-get安装docker.io来解决这个问题。
https://askubuntu.com/questions/709699
复制相似问题