码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu vim 7.4 编译安装

时间:2014-12-03 00:11:44      阅读:380      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   color   os   使用   sp   for   

 
2.打开终端,通过命令行解压缩,输入
tar jxf vim-7.4.tar.bz2
此时会在当前目录下生成vim73文件夹
 
3.继续在终端输入
cd vim74
cd src
./configure
经过前面几步,会在/vim74/src目录下生成MakeFile文件
 
4.在/src目录下输入
sudo make
sudo make install
完成这步就完成了编译,安装
 
注意:在make过程中可能会碰到下面的问题:
 
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
 
解决方法:
sudo apt-get install libncurses5-dev
如果没有该软件可以添加阿里的源:

deb http://mirrors.aliyun.com/ubuntu/ precise main
deb-src http://mirrors.aliyun.com/ubuntu/ precise main

5.再输入
sudo apt-get install vim-gnome
即可使用“+p来进行粘贴用”+y进行复制
此时在/src目录输入vim就可以进入了,还需要修改一下路径
 
6.将软件所在位置添加到环境变量中
PATH=$PATH:/usr/local/bin
这样打开终端输入vim直接可以进入
 

另外可以通过更新第三方源的形式来升级vim:

$ sudo add-apt-repository ppa:fcwu-tw/ppa
$ sudo apt-get update
$ sudo apt-get install vim

 

ubuntu vim 7.4 编译安装

标签:style   blog   http   ar   color   os   使用   sp   for   

原文地址:http://www.cnblogs.com/jostree/p/4137083.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!