环境:centos
我的全局python版本是2.7,但是我使用pyenv创建了一个python版本3.6。 我想用python3构建vim8。 根据网上的说明,我使用
./configure --with-features=huge \
--enable-multibyte \
--enable-python3interp=yes \
--with-python3-config-dir=/root/.pyenv/versions/3.6.3 \
--enable-gui=gtk2 \
--enable-cscope \
--prefix=/usr/local
make && make install
Vim8构建正常,但没有python3:
vim --version
该列表显示了-python和-python3。
我不知道什么是错的。