pip 오류 unused-command-line-argument-hard-error-in-future 해결 방법

1387 단어
내 Mac Air에 pip로 파이톤 라이브러리를 설치할 때 가끔 오류가 발생한다.'unused-command-line-argument-hard-error-in-future'에 대한 오류는 다음과 같다.
 
  
cc -fno-strict-aliasing -fno-common -dynamic -arch x86_64 -arch i386 -g -Os -pipe -fno-common -fno-strict-aliasing -fwrapv -mno-fused-madd -DENABLE_DTRACE -DMACOSX -DNDEBUG -Wall -Wstrict-prototypes -Wshorten-64-to-32 -DNDEBUG -g -fwrapv -Os -Wall -Wstrict-prototypes -DENABLE_DTRACE -arch x86_64 -arch i386 -pipe -I/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c psutil/_psutil_osx.c -o build/temp.macosx-10.9-intel-2.7/psutil/_psutil_osx.o

clang: error: unknown argument: '-mno-fused-madd' [-Wunused-command-line-argument-hard-error-in-future]

clang: note: this will be a hard error (cannot be downgraded to a warning) in the future

error: command 'cc' failed with exit status 1


이런 오류는 횟수가 많아져서 매번 구글에 가는데 차라리 스스로 기록하는 것이 낫겠다.이유: The Apple LLVM compiler in Xcode 5.1 treats unrecognized command-line options as errors.This issue has been seen when building both Python native extensions and Ruby Gems, where some invalid compiler options are currently specified.
해결 방법: 다음과 같이 ARCHFLAGS 매개변수를 설정합니다.
 
  
sudo ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future pip install psutil

좋은 웹페이지 즐겨찾기