zoukankan      html  css  js  c++  java
  • linux 中spfvim安装

    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

  • 相关阅读:
    初识网络编程
    实参和形参
    函数的组成部分及函数参数
    字符编码与文件操作2
    day07
    day06
    day05
    day03
    drf规范
    JQ
  • 原文地址:https://www.cnblogs.com/java-cjt/p/3920095.html
Copyright © 2011-2022 走看看