vim: command not found
时间: 2023-10-25 21:09:40 浏览: 184
docker容器中 bash: vi: command not found,docker apt-get 异常 Temporary failure resolving
这个错误提示表明您的系统中没有安装 Vim 编辑器。您需要先安装 Vim 才能使用它。如果您使用的是 Ubuntu 或 Debian 等 Linux 发行版,可以通过以下命令安装 Vim:
```
sudo apt-get update
sudo apt-get install vim
```
如果您使用的是 CentOS 或 Fedora 等 Linux 发行版,可以通过以下命令安装 Vim:
```
sudo yum install vim
```
如果您使用的是 macOS,可以通过 Homebrew 安装 Vim:
```
brew install vim
```
如果您使用的是 Windows,可以从 Vim 官网下载安装程序进行安装。
阅读全文