强制 VIM 在 ubuntu 16.04 中使用 python3.6
force VIM to use python3.6 in ubuntu 16.04
我正在使用 ubuntu 16.04 并尝试使用需要 python3.6 (YouCompleteMe) 的 vim
插件。我使用 update-alternatives
将 python3.6 设置为默认的 python
和 python3
解释器,但 vim 仍在使用 python3.5。
有没有办法告诉 vim
使用 python3.6 解释器?
提前致谢
Vim 使用编译时使用的 Python 解释器。任何设置都不会影响它。如果找不到具有所需 Python 支持的 Vim 二进制文件,使 Vim 使用 Python3.6 的唯一方法是使用 Python 编译它3.6 你自己。请参阅 --enable-python3interp
、--with-python3-command
和 --with-python3-config-dir
选项 Vim 的 configure
。
我正在使用 ubuntu 16.04 并尝试使用需要 python3.6 (YouCompleteMe) 的 vim
插件。我使用 update-alternatives
将 python3.6 设置为默认的 python
和 python3
解释器,但 vim 仍在使用 python3.5。
有没有办法告诉 vim
使用 python3.6 解释器?
提前致谢
Vim 使用编译时使用的 Python 解释器。任何设置都不会影响它。如果找不到具有所需 Python 支持的 Vim 二进制文件,使 Vim 使用 Python3.6 的唯一方法是使用 Python 编译它3.6 你自己。请参阅 --enable-python3interp
、--with-python3-command
和 --with-python3-config-dir
选项 Vim 的 configure
。