728x90
반응형
detectron2를 설치하던 도중 certifi 버전이 없다고 오류가 뜬 상황.
pip install 명령어에 --ignore-installed 옵션을 추가하여 설치하면 무시하게 됨.
기존 pip install에서 -ignore 옵션 추가
# Before
pip install detectron2...
# After
pip innstall --ignore-installed detectron2
728x90
반응형
'사소한 Tip . 오류 해결법' 카테고리의 다른 글
[cv2/python] 클래스마다 랜덤 color palette (0) | 2024.03.13 |
---|---|
[SSH] ssh 접속할 때 비밀번호 입력 안하는 방법 (0) | 2024.02.20 |
[Excel 엑셀] 특정 셀 참조하여 관련 데이터 전체 출력 / VLOOKUP (2) | 2023.12.21 |
[cv2.findContours] [Start]FindContours supports only CV_8UC1 images when mode != CV_RETR_FLOODFILL otherwise supports CV_32SC1 images only in function 'cvStartFindContours_Impl (0) | 2023.12.05 |
[pandas] Dataframe 정리 (0) | 2023.11.15 |