Install

Install

MacOS Monterey 上编译安装vim #

由于部分插件是依赖于py3的,所以需要自己手动编译打开py3的支持。

mac 自带的/usr/bin/python3是阉割版本的,没有python3的开发包。因此我们是一定要自己安装一个python3的。一般使用brew安装即可。

安装完python后,


 ./configure --with-features=huge\
    --enable-multibyte \
    --enable-rubyinterp=dynamic \
    --with-ruby-command=/usr/bin/ruby \
    --enable-pythoninterp=dynamic \
    --with-python-config-dir=/usr/lib/python2.7/config \
    --enable-python3interp=3.7 \
    --with-python3-config-dir=$(python3.7-config --configdir) \
    --enable-cscope \
    --enable-gui=auto \
    --enable-gtk2-check \
    --enable-fontset \
    --enable-largefile \
    --disable-netbeans \
    --with-compiledby="paladnix@outlook.com" \
    --enable-fail-if-missing \
    --prefix=/usr/local