Python

[Python] cv2(opencv) 모듈 설치하기

체봄 2020. 4. 13. 00:43

Python에서 cv2 모듈을 사용해야하는데 설치가 안되있어서 > pip install cv2 를 입력했더니

'ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none) ERROR: No matching distribution found for cv2'

이런 에러 메시지가 발생하였다.

 

 

해결방법

> pip install opencv-python 으로 설치하고, 사용 시에는 > import cv2 로 사용한다.

 

 

 

반응형