標籤:style blog http ar color os 使用 sp for
jostree 轉載請註明出處 http://www.cnblogs.com/jostree/p/4137402.html1.到官網 http://www.vim.org/download.php#unix vim-7.4.tar.bz2包 2.開啟終端,通過命令列解壓縮,輸入tar jxf vim-7.4.tar.bz2此時會在目前的目錄下產生vim73檔案夾 3.繼續在終端輸入cd vim74cd src./configure經過前面幾步,會在/vim74/src目錄下產生MakeFile檔案 4.在/src目錄下輸入sudo makesudo make install完成這步就完成了編譯,安裝
注意:在make過程中可能會碰到下面的問題:
no terminal library foundchecking 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 編譯安裝