centos6安装vim插件youcompleteme问题及解决

  1. 首先clone vim8代码库
    git clone https://github.com/vim/vim.gitpython

  2. 而后编译
    注意下本身的python2.7config在哪儿
./configure --with-features=huge \
--enable-multibyte \
--enable-rubyinterp=yes \
--enable-pythoninterp=yes \
--with-python-config-dir=/usr/lib64/python2.7/config \ # pay attention here check directory correct
--enable-python3interp=yes \
--with-python3-config-dir=/usr/lib/python3.5/config \
--enable-perlinterp=yes \
--enable-luainterp=yes \
--enable-gui=gtk2 \
--enable-cscope \
--prefix=/usr/local
  1. 对于vimplug
    配置下Plug 'valloric/youcompleteme'git

  2. 进入~/.vim/plugged/youcompleteme
    执行/usr/bin/python ./install.py --clang-completer
    或者直接./install.pygithub

结束vim

相关文章
相关标签/搜索