프로그래밍/Python

[Python] 윈도우에서 cython_bbox 설치 오류: "ERROR: Failed building wheel for cython_bbox windows"

채윤아빠 2022. 5. 18. 09:42
728x90
반응형

증상 및 문제점

cython_bbox 패키지 설치시, 다음과 같은 오류가 발생하며 설치되지 않는 문제가 발생하였습니다.

      cl : 명령줄 error D8021 : '/Wno-cpp' 숫자 인수가 잘못되었습니다.
      error: command 'C:\\Dev\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.32.31326\\bin\\HostX86\\x64\\cl.exe' failed 
with exit code 2
      [end of output]

  note: This error originates from a subprocess, and is likely not a problem with pip.
  ERROR: Failed building wheel for cython-bbox
  Running setup.py clean for cython-bbox
Failed to build cython-bbox

해결 방법

cython-bbox 패키지를 이용하여 위하여 다음과 같이 "cython" 패키지를 설치합니다.

pip install cython

그리고 난 후에 다음과 같이 cython-bbox 설치하면 깔끔하게 해결됩니다.

pip install -e git+https://github.com/samson-wang/cython_bbox.git#egg=cython-bbox

참고자료