Skip to content

Instantly share code, notes, and snippets.

@ubuntupunk
Last active February 5, 2025 09:17
Show Gist options
  • Save ubuntupunk/6fb769c6a17a461eafe2c723f99bad2e to your computer and use it in GitHub Desktop.
Save ubuntupunk/6fb769c6a17a461eafe2c723f99bad2e to your computer and use it in GitHub Desktop.
compile vim with python
./configure \--with-features=huge \
--enable-multibyte \
--enable-rubyinterp=dynamic \
--enable-pythoninterp=dynamic \
--with-python-config-dir=/usr/lib/python2.7/config-x86_64-linux-gnu/ \
--with-python-command=/usr/bin/python \
--enable-python3interp=dynamic \
--with-python-config-dir=/usr/lib/python3.9/config-3.9-x86_64-linux-gnu/ \
--with-python3-command=/usr/bin/python3 \
--enable-perlinterp=dynamic \
--enable-luainterp=dynamic \
--enable-gui=gtk3 \
--enable-cscope \
--with-x \
--prefix=/usr/local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment