7

vim7.4 のソース コードをダウンロードし、vim を 7.4 にアップグレードすることにしました。ただし、Python サポートを追加することはできません。

./configure  --enable-pythoninterp  --enable-rubyinterp --enable-gui=no --without-x --enable-cscope --enable-multibyte --prefix=/usr

src/auto/config.log を確認したところ、次のことがわかりました。

configure:5592: checking Python's configuration directory
configure:5614: result:·
configure:5620: result: can't find it!

インストールされた python 情報:

dpkg-query -l python
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name                             Version                          Description
+++-================================-================================-   ================================================================================
ii  python                           2.7.3-0ubuntu2.2                 interactive high-level object-oriented language (default version)

src ディレクトリでmakeを呼び出した後:

./vim --version | grep python
+cryptv          +linebreak       -python          +viminfo
+cscope          +lispindent      -python3         +vreplace

vimがpythonの設定ディレクトリを見つけられないことが原因のようです。修正方法は?

事前の洞察に感謝します。

4

4 に答える 4

3

Python の開発パッケージがインストールされていることを確認し、適切なconfigディレクトリを指定してください。

元:./configure --enable-pythoninterp --with-python-config-dir=/usr/lib/python2.7/config

于 2013-08-30T09:58:45.797 に答える