linux 中spfvim安装

阿里云国内75折 回扣 微信号:monov8
阿里云国际,腾讯云国际,低至75折。AWS 93折 免费开户实名账号 代冲值 优惠多多 微信号:monov8 飞机:@monov6

1. 安装 git

1.1 安装依赖的包:

  curl          curl-devel     zlib-devel         openssl-devel      perl      cpio      expat-devel getttext-devel

1.2 安装git:

wget http://www.codemonkey.org.uk/projects/git-snapshots/git/git-latest.tar.gz
  tar xzvf git-latest.tar.gz
  cd git-2011-11-30 #你的目录可能不是这个
  autoconf
  ./configure
  make
  sudo make install
 1.3 检查git安装:

git --version

git安装完后,执行命令的时候出现:error while loading shared libraries: libiconv.so.2: cannot open shared object file: No such file or directory

解决办法如下:

1.在/etc/ld.so.conf中加一行/usr/local/lib,

2.然后运行/sbin/ldconfig,文件解决,没有报错了~~

2. 安装spfvim

# git clone https://github.com/spf13/spf13-vim.git
  # cd spf13-vim
  # ./bootstrap.sh

阿里云国内75折 回扣 微信号:monov8
阿里云国际,腾讯云国际,低至75折。AWS 93折 免费开户实名账号 代冲值 优惠多多 微信号:monov8 飞机:@monov6