Mac 설치 M2Crypto 프롬프트에서 openssl 헤더 파일을 찾을 수 없음 해결

1115 단어
아마 이런 문제일 거예요.running build running build_py running build_ext building'M2Crypto.__m2crypto' extension swigging SWIG/_m2crypto.i to SWIG/_m2crypto_wrap.c swig -python -I/usr/include/python2.7-I/usr/include -includeall -modern -builtin -outdir build/lib.linux-i686-2.7/M2Crypto -o SWIG/_m2crypto_wrap.c SWIG/_m2crypto.i SWIG/_evp.i:12:Error:Unable to find'openssl/opensslconf.h'SWIG/_ec.i:7:Error:Unable to find'openssl/opensslconf.h'error: command 'swig' failed with exit status 1
OSX 업그레이드 후/usr/include 조차 없으므로 명령 사용
​xcode-select --install​
xcode 명령행 도구를 설치하고/usr/include를 몇 번 더 설치하면 돌아옵니다
그런데 안에 오픈스sl이 없어요.
그리고 오픈스sl을 따로 설치할 때 헤더 파일이/usr/include에 들어가지 않았습니다. 난용이 없고/usr/include는 변경할 수 없는 시스템 디렉터리입니다.
그러나 우리는 M2Crypto를 설치할 때 잘못 보고한 부분이 swig 문장에 문제가 있다는 것을 주의해서 swig의 주소 찾기 경로를 수정할 수 있다. 다음과 같다.
sudo env LDFLAGS="-L$(brew --prefix openssl)/lib"\
CFLAGS="-I$(brew --prefix openssl)/include"\
SWIG_FEATURES="-cpperraswarn -includeall -I$(brew --prefix openssl)/include"\
pip install m2crypto
성공

좋은 웹페이지 즐겨찾기