如何在Docker中的Ubuntu容器中使用apt-get安装软件包

我已经在Windows 10上安装了Docker。之后,拉动ubuntu容器。 运行这个docker run -t -i --privileged ubuntu bash容器后, docker run -t -i --privileged ubuntu bashdocker run -t -i --privileged ubuntu bash命令,我已经在控制台中获得了root@7f72926f3608:/#

然后,尝试使用apt-get安装python软件包,如$sudo apt-get install pythonapt-get install python ,但是我在控制台中得到了以下错误:

 Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package python 

因此, 问题是如何在docker中的ubuntu容器中安装一个包?

运行apt-get update ,然后安装软件包。