I am trying to build vim with python support, but using a custom-built python somewhere in my $HOME directory (say $HOME/python2.6). Unfortunately, even giving --with-python-config-dir=$HOME/python2.6/lib/python2.6/config does not prevent vim configure to look into the python in /usr. Is there a way around that that does not involve hand editing makefiles ?

link|improve this question

69% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Just glancing at the configure file it looks like you can set the path to the python executable using an env var 'vi_cv_path_python'. So:

vi_cv_path_python=~/bin/python ./configure --enable-pythoninterp

Replacing ~/bin/python with the appropriate path for your install of course.

link|improve this answer
thanks, that did it – David Cournapeau Dec 6 '11 at 22:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.