1. コンフィグファイルの再設定
vimscriptにてpython3を使えるようにする
sudo ./configure --with-features=huge --enable-rubyinterp --enable-pythoninterp --enable-perlinterp --enable-cscope --enable-python3interp --with-python3-config-dir=/usr/local/bin/python3.5
※ コンフィグの詳細設定は ./configure --help
2. ビルド
make
3. python3が使えることを確認
:py3 print("Hello World")