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
참고자료
- "windows 에서 pip install pycocotools 로 설치가 안 된다.":https://daewonyoon.tistory.com/327
- "Is there a way to install cython-bbox for Windows?":https://stackoverflow.com/questions/60349980/
'프로그래밍 > Python' 카테고리의 다른 글
[Python] ubuntu 20.04에서 venv에서 OpenCV 연동하기 (0) | 2022.05.24 |
---|---|
[Python] error: (-5:Bad argument) in function 'pointPolygonTest' (0) | 2022.05.23 |
[Python] 날짜 문자열을 timestamp로 변환하기 (0) | 2022.05.13 |
[Python] class의 재미난 특징 (0) | 2022.05.12 |
[Python] numpy.array 배열을 문자열로 변환하는 방법 (0) | 2022.05.02 |