Skip to content

Instantly share code, notes, and snippets.

@wonkoderverstaendige
Created April 26, 2014 21:50
Show Gist options
  • Save wonkoderverstaendige/11332052 to your computer and use it in GitHub Desktop.
Save wonkoderverstaendige/11332052 to your computer and use it in GitHub Desktop.
Install vim with python support
# From mbrochh
sudo apt-get build-dep vim
sudo apt-get install mercurial
hg clone https://vim.googlecode.com/hg/ vim
cd vim/src
./configure --enable-pythoninterp --with-features=huge --prefix=$HOME/opt/vim
make && make install
mkdir -p $HOME/bin
cd $HOME/bin
ln -s $HOME/opt/vim/bin/vim
# Make sure /home/[me]/bin is added to PATH!
# export PATH=$PATH:$HOME/bin
which vim
sudo apt-get install gtk2-engines-pixbuf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment