Last active
February 5, 2025 09:17
-
-
Save ubuntupunk/6fb769c6a17a461eafe2c723f99bad2e to your computer and use it in GitHub Desktop.
compile vim with python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./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