Skip to content

Instantly share code, notes, and snippets.

@gavincyi
Last active October 16, 2017 02:45
Show Gist options
  • Select an option

  • Save gavincyi/0a54be29080b47b962063e078edd05bf to your computer and use it in GitHub Desktop.

Select an option

Save gavincyi/0a54be29080b47b962063e078edd05bf to your computer and use it in GitHub Desktop.
Install Vim 8 with Python, Python 3, Ruby and Lua support on Ubuntu 16.04
cd workspace
git clone https://github.com/vim/vim
cd vim
git pull && git fetch
#In case Vim was already installed
cd src
make distclean
cd ..
./configure \
--enable-multibyte \
--enable-python3interp \
--with-python3-config-dir=/opt/rh/rh-python35/root/usr/lib64/python3.5/config-3.5m \
--enable-gui=auto \
--with-features=huge \
--with-x \
--enable-fontset \
--enable-largefile \
--disable-netbeans \
--with-compiledby="Gavin.Chan" \
--enable-fail-if-missing
make && make install DESTDIR=/home/gchan/build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment