我在 Windows 10 上的 Ubuntu WSL 中安装 docker,并使用以下命令
sudo apt-get install -y \ apt-transport-https \ ca-certificates \ curl \ software-properties-common
但是,输出是这样的:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package
E: Unable to locate package
E: Unable to locate package
E: Unable to locate package
我犯了错误吗或者这是正常现象?
答案1
\
从命令中删除:
sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common
我猜你是从某个网页复制的命令,而该网页的命令被分成了几行。在这种情况下,\
行尾不会标记命令的结束。
如果您只使用一行命令,则\
表明apt-get
您要安装名为“ ”(一个空格)的包,这会导致错误。