要用vim命令,系统自带vi,却无vim

去官网相应版本的vim,这边我选的是7.3版的

ftp://ftp.vim.org/pub/vim/unix/


解压后,会生成个vim73的文件夹,不同版本可能数字不同

./configure 报错,提示如下:

no terminal library found
checking for tgetent()… configure: error: NOT FOUND!
      You need to install a terminal library; for example ncurses.
      Or specify the name of the library with –with-tlib

解决方法,安装ncurses-dev,参考帖子如下:

http://askubuntu.com/questions/158344/no-terminal-library-found-when-compiling-vim


https://rpmfind.net/linux/rpm2html/search.php?query=ncurses-dev&submit=Search+...&system=centos&arch= 下载ncurses-dev

然后rpm -ivh安装

好了以后开始vim的./configture  make  make install 三重奏

OVER