欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

CentOS 7.8安装Vim8并添加Python3支持

程序员文章站 2024-03-24 09:12:16
...

yum安装Python3

  • 安装epel
yum install epel-release
  • 安装Python3
yum install python36 python36-devel

编译安装vim并添加python3支持

  • 安装依赖
yum install ncurses-devel
  • 删除系统自带vim
yum remove vim
  • git下载vim并安装
git clone https://github.com/vim/vim.git
cd vim/src
./configure --with-features=huge --enable-multibyte --enable-rubyinterp=yes --enable-python3interp=yes --prefix=/usr/local/vim8 --disable-selinux --enable-cscope --with-python3-command=python3.6
make
make install
  • 创建软连接
ln -s /usr/local/vim8/bin/vim /usr/bin/vim
  • 验证
vim --version

CentOS 7.8安装Vim8并添加Python3支持
注意事项

  1. config参数说明

configure必须加上–enable-python3interp与–with-python3-command,同时–with-python3-command后的值是你本地能运行python3的命令,我本机用python36或python3.6都能进入python3,所以这里是python3.6,如果安装不同Python版本,需求修改配置参数。

  1. vim命令报错解决方法
export PATH=$PATH:/usr/bin/vim
source /etc/profile