在使用docker容器时,有时候里边没有安装vim,敲vim命令时提示说:vim: command not found,这个时候就需要安装vim。
apt-get install vim
若提示:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package vim
则:
apt-get update
命令的作用是:同步 /etc/apt/sources.list 和 /etc/apt/sources.list.d 中列出的源的索引,这样才能获取到最新的软件包。
更新完毕以后再敲命令:
apt-get install vim
结束。