场景
在docker
容器中,使用vim
命令时vim test.txt
提示:vim: command not found
解决办法
- 使用
apt install vim
命令安装vim
。如果安装时提示如下:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package vim
1
2
3
4
- 那么使用
apt update
命令更新最新的软件包 - 更新完成以后再使用命令
apt install vim
命令即可