スクリプトが Python ライブラリへのパスを見つけられません。次の操作を行う前に、setuptools がインストールされていることを確認してください。
表示されているエラーは、おそらく ~/.vim/bundle/YouCompleteMe/third_party/ycmd/build.py の 149 行目の関数 FindPythonLibrariesOnLinux() によって返されています。
youcompletemetest.py というファイルを作成し、次のコードを入力することで、問題を引き起こしているスクリプトの一部だけを実行できます。
import sys
import os.path as p
import subprocess
import re
NO_PYTHON_LIBRARY_ERROR = 'ERROR: unable to find an appropriate Python library.'
PY_MAJOR, PY_MINOR = sys.version_info[ 0 : 2 ]
LIBRARY_LDCONFIG_REGEX = re.compile(
'(?P<library>\S+) \(.*\) => (?P<path>\S+)' )
if not ( ( PY_MAJOR == 2 and PY_MINOR >= 6 ) or
( PY_MAJOR == 3 and PY_MINOR >= 3 ) or
PY_MAJOR > 3 ):
sys.exit( 'ycmd requires Python >= 2.6 or >= 3.3; '
'your version of Python is ' + sys.version )
def GetPythonNameOnUnix():
python_name = 'python' + str( PY_MAJOR ) + '.' + str( PY_MINOR )
# Python 3 has an 'm' suffix on Unix platforms, for instance libpython3.3m.so.
if PY_MAJOR == 3:
python_name += 'm'
return python_name
def GetStandardPythonLocationsOnUnix( prefix, name ):
return ( '{0}/lib/lib{1}'.format( prefix, name ),
'{0}/include/{1}'.format( prefix, name ) )
def CheckOutput( *popen_args, **kwargs ):
process = subprocess.Popen( stdout=subprocess.PIPE, *popen_args, **kwargs )
output, unused_err = process.communicate()
retcode = process.poll()
if retcode:
command = kwargs.get( 'args' )
if command is None:
command = popen_args[ 0 ]
error = subprocess.CalledProcessError( retcode, command )
error.output = output
raise error
return output
def FindPythonLibrariesOnLinux():
python_name = GetPythonNameOnUnix()
python_library_root, python_include = GetStandardPythonLocationsOnUnix(
sys.exec_prefix, python_name )
python_library = python_library_root + '.so'
if p.isfile( python_library ):
return python_library, python_include
python_library = python_library_root + '.a'
if p.isfile( python_library ):
sys.exit( NO_DYNAMIC_PYTHON_ERROR.format( library = python_library,
flag = '--enable-shared' ) )
# On some distributions (Ubuntu for instance), the Python system library is
# not installed in its default path: /usr/lib. We use the ldconfig tool to
# find it.
python_library = 'lib' + python_name + '.so'
ldconfig_output = CheckOutput( [ 'ldconfig', '-p' ] ).strip().decode( 'utf8' )
for line in ldconfig_output.splitlines():
match = LIBRARY_LDCONFIG_REGEX.search( line )
if match and match.group( 'library' ) == python_library:
return match.group( 'path' ), python_include
sys.exit( NO_PYTHON_LIBRARY_ERROR )
print "\n".join(FindPythonLibrariesOnLinux());
そのファイルは次の方法で実行できます。
python youcompletemetest.py
私にとってはそれが出力されます
/usr/lib/x86_64-linux-gnu/libpython2.7.so
/usr/include/python2.7
しかし、あなたにとっては、python を見つけることができません。Python がインストールされている場所がわかっている場合は、そのパスを見つけて、FindPythonLibrariesOnLinux() という関数の内容全体を、Python ライブラリの場所を含む配列に置き換えることができます。
ソースファイルを開きます。
vi ~/.vim/bundle/YouCompleteMe/third_party/ycmd/build.py
機能していない関数を見つけます: /^def\sFindPythonLibrariesOnLinux
その関数を変更して、Python ライブラリへのフル パスのみを返すようにします (私の場合は次のようになります)。
def FindPythonLibrariesOnLinux():
return ["/usr/lib/x86_64-linux-gnu/libpython2.7.so","/usr/include/python2.7"]
これで、インストールを続行できます。
./install.py --clang-completer