zoukankan      html  css  js  c++  java
  • RHEL编译安装 vim8.2


    title: RHEL编译安装 vim8.2
    author: susu
    site:
    - cnblogs.com

    vim8.2

    YouCompleteMe 需要vim 8 及 python3.6.0+支持。

    [root@master src]# yum install perl-devel python3-devel tcl-devel lua-devel ncurses-devel lua expectk expect-devel
    [root@master src]# tar -jxvf vim-8.2.tar.bz2
    [root@master src]# cd vim82/src
    [root@master src]# ./configure --prefix=/opt/vim82 --enable-luainterp=yes  --enable-pythoninterp=yes --with-python3-command=python3   --with-python3-config-dir=/usr/lib64/python3.6/config-3.6m-x86_64-linux-gnu --enable-python3interp=yes --enable-tclinterp=yes --enable-rubyinterp=yes --enable-cscope --enable-terminal --enable-multibyte --with-tclsh=tclsh --with-ruby-command=ruby
    [root@master src]# make install
    [root@master src]# ln -s /opt/vim82/bin/vim /usr/local/sbin/vim
    [root@master src]# vim --version | grep python3
    +comments          +linebreak         +python3           +visualextra
    

    problem

    1. 源码编译vi过程中进行配置时报“checking if compile and link flags for Python are sane... no: PYTHON DISABLED”
    yum install python3-devel
    

    reference

    WARNING: No any other purpose,keeping reminded! So sorry to offended,if necessary, contact me and I do change what I had done to protect your privileges!
  • 相关阅读:
    计算机导论课后总结第二弹
    深入懂得信息
    计算机导论课后总结第一弹
    upload-labs脑图
    高精度学习
    洛谷学习
    Bugku 密码学脑图
    Bypass disabled_functions
    Python库学习
    LFI-labs
  • 原文地址:https://www.cnblogs.com/MimiSnowing/p/14893229.html
Copyright © 2011-2022 走看看