Debian wheezy의 VIM(Mercurial) +python3.2: 라이브러리 함수 PySys_SetArgv를 로드할 수 없습니다.

Debian wheezy의 VIM(Mercurial) +python3.2: 라이브러리 함수 PySys_SetArgv를 로드할 수 없습니다.
> ./configure --enable-python3interp=dynamic --enable-gui=gtk2
> --with-python3-config-dir=/usr/lib/python3.2/

make

vim --version|grep pyth

    +cryptv          +linebreak       -python          +viminfo
    -cscope          +lispindent      +python3/dyn     +vreplace

하지만 다음과 같이 하면: :python3 print('hi') 다음과 같은 결과를 얻습니다.

E448: Could not load library function PySys_SetArgv
E263: Sorry, this command is disabled, the Python library could not be loaded.

답변1

줄의 후행 "/"를 제거하여 이 문제를 해결했습니다.'--with-python3-config-dir=/usr/lib/python3.2/'

이와 같이:--with-python3-config-dir=/usr/lib/python3.2

관련 정보